Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-20 09:46:12 +0000
committerMarkus Keller2015-08-20 11:52:08 +0000
commit70eb4f06a03655928597e7f6c9399ce7c370faf9 (patch)
tree9bd223d2aa525a11211ddcc02a8d826c54ae2ec0 /pom.xml
parentdf14e6ff07c1803cff970bd9eb4e88cf528e0f7d (diff)
downloadrt.equinox.framework-70eb4f06a03655928597e7f6c9399ce7c370faf9.tar.gz
rt.equinox.framework-70eb4f06a03655928597e7f6c9399ce7c370faf9.tar.xz
rt.equinox.framework-70eb4f06a03655928597e7f6c9399ce7c370faf9.zip
Bug 471835 - Build succeeds, even when "old" parent pom is referred to
Change-Id: Ie49958799d52abd3b1ddf9af18ac09ad5d36873a Signed-off-by: Markus Keller <markus_keller@ch.ibm.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml34
1 files changed, 22 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index a9b0f7586..9980911d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,18 +28,28 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/equinox/rt.equinox.framework.git</tycho.scmUrl>
</properties>
- <repositories>
- <repository>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <id>eclipse-hosted</id>
- <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
- </repository>
- </repositories>
+ <!--
+ To build individual bundles, we specify a repository where to find parent pom,
+ in case it is not in local maven cache already
+ and that parent pom also has fuller individual-bundle profile
+ defined that is combined with this one. -->
+ <profiles>
+ <profile>
+ <id>build-individual-bundles</id>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>eclipse-hosted</id>
+ <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
+ </repository>
+ </repositories>
+ </profile>
+ </profiles>
<modules>
<module>bundles/org.eclipse.osgi</module>

Back to the top