Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-20 10:38:57 +0000
committerMarkus Keller2015-08-20 11:51:58 +0000
commit13a28a9a449ca1ac32cdc5889d4a808d995c1973 (patch)
treea0684bb451c807c0c85b5b576d863a9d7ca121b3
parentee1bb0098ef68c7cdd217647777a204c6f8de5af (diff)
downloadeclipse.pde-13a28a9a449ca1ac32cdc5889d4a808d995c1973.tar.gz
eclipse.pde-13a28a9a449ca1ac32cdc5889d4a808d995c1973.tar.xz
eclipse.pde-13a28a9a449ca1ac32cdc5889d4a808d995c1973.zip
Bug 471835 - Build succeeds, even when "old" parent pom is referred toI20150901-0800I20150825-0800
Change-Id: Ide75d2a731a97c58a1cfbbf8f69c329bc0dfd77f Signed-off-by: Markus Keller <markus_keller@ch.ibm.com>
-rw-r--r--pom.xml34
1 files changed, 22 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index e981055..c79f998 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,18 +28,28 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/pde/eclipse.pde.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>org.eclipse.pde-feature</module>

Back to the top