Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-21 14:02:56 +0000
committerMarkus Keller2015-08-26 13:44:47 +0000
commit85748f1437f895a5f6292519eb122b493b49c965 (patch)
treea471ac1ba7ee5c4bec0f3d6ff25929cfe2c14c40
parent55f9089f81fc5d22f8179539fc025cb936a20633 (diff)
downloadeclipse.pde.build-85748f1437f895a5f6292519eb122b493b49c965.tar.gz
eclipse.pde.build-85748f1437f895a5f6292519eb122b493b49c965.tar.xz
eclipse.pde.build-85748f1437f895a5f6292519eb122b493b49c965.zip
Change-Id: I4958e6e4e6c0e2828f1bd06061b0ef777bc9fed5 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 e769813e..d9b06aa6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,18 +29,28 @@
<defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
</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.build</module>

Back to the top