Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Daniel2013-09-12 09:58:44 +0000
committerKrzysztof Daniel2013-09-12 10:00:35 +0000
commit74b3430de8e69157093914a91c5bb8cf27a39261 (patch)
treea0d71cd4288a95bcdbf11c5fe396b232e0264ad1 /org.eclipse.equinox.p2.releng
parent629e299d9ac8e8ff5418c250e720fa232993a8ed (diff)
downloadrt.equinox.p2-74b3430de8e69157093914a91c5bb8cf27a39261.tar.gz
rt.equinox.p2-74b3430de8e69157093914a91c5bb8cf27a39261.tar.xz
rt.equinox.p2-74b3430de8e69157093914a91c5bb8cf27a39261.zip
Bug 416676 - Enabling standalone p2 builds and document how to run the
build eclipse-platform-parent is published to repo.eclipse.org and needs to be used when a partial build is invoked. Tests failures need to be ignored as the build is not complete yet. org.eclpse.osgi.compatibility.state needs to be added to surefire when running standalone build. Change-Id: Id69af4d2b68bfe3cb30c7a02ac69dfbcd1dda02e Signed-off-by: Krzysztof Daniel <kdaniel@redhat.com>
Diffstat (limited to 'org.eclipse.equinox.p2.releng')
-rw-r--r--org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
index 33e96d108..8a429950e 100644
--- a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
+++ b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
@@ -71,5 +71,39 @@
<osgi.ws>cocoa</osgi.ws>
</properties>
</profile>
+ <profile>
+ <id>partial-build</id>
+ <activation>
+ <property>
+ <name>eclipse-sdk-repo.url</name>
+ </property>
+ </activation>
+ <repositories>
+ <repository>
+ <id>eclipse-snapshots</id>
+ <url>http://repo.eclipse.org/content/repositories/eclipse-snapshots/</url>
+ </repository>
+ </repositories>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <configuration>
+ <dependencies>
+ <dependency>
+ <type>eclipse-plugin</type>
+ <artifactId>org.eclipse.osgi.compatibility.state</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ </dependencies>
+ <testFailureIgnore>true</testFailureIgnore>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ </profile>
</profiles>
</project>

Back to the top