Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Oberlies2011-08-01 11:36:09 +0000
committerTobias Oberlies2011-08-01 16:00:40 +0000
commita43bcda283dc231e7ff05d57e531b7f7f41403ad (patch)
tree8c8bdc616a901e2eb4101930fcb6a2e756e9e584 /bundles/org.eclipse.equinox.p2.tests.ui/pom.xml
parentcdb395b87307f3df0b9a2415f2722801fc836a6f (diff)
downloadrt.equinox.p2-a43bcda283dc231e7ff05d57e531b7f7f41403ad.tar.gz
rt.equinox.p2-a43bcda283dc231e7ff05d57e531b7f7f41403ad.tar.xz
rt.equinox.p2-a43bcda283dc231e7ff05d57e531b7f7f41403ad.zip
304594 Make publisher bundles buildable with Tycho
- Migrate to the current Tycho release 0.12.0. - Configure compiler source/target levels in parent POM to work around Tycho bug 353505. This should be okay as first approximation to the PDE build, which currently configures the source/target levels per project through the build.properties. In case a project doesn't build with this default, the setting could be overridden in the project's POM. - Prevent that Maven/Tycho build results are committed to the repository.
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests.ui/pom.xml')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests.ui/pom.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests.ui/pom.xml b/bundles/org.eclipse.equinox.p2.tests.ui/pom.xml
index ea922a7ee..1f683d9e7 100644
--- a/bundles/org.eclipse.equinox.p2.tests.ui/pom.xml
+++ b/bundles/org.eclipse.equinox.p2.tests.ui/pom.xml
@@ -3,12 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
+
<parent>
<artifactId>org.eclipse.equinox.p2-parent</artifactId>
<groupId>org.eclipse</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent</relativePath>
</parent>
+
<groupId>org.eclipse</groupId>
<artifactId>org.eclipse.equinox.p2.tests.ui</artifactId>
<version>1.0.100-SNAPSHOT</version>
@@ -17,8 +19,8 @@
<build>
<plugins>
<plugin>
- <groupId>org.sonatype.tycho</groupId>
- <artifactId>maven-osgi-test-plugin</artifactId>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<testSuite>org.eclipse.equinox.p2.tests.ui</testSuite>

Back to the top