Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-20 10:38:13 +0000
committerMarkus Keller2015-08-20 11:51:41 +0000
commitcff38cc0fcf06caa3b8c0c8a601a92d0382891b6 (patch)
treee748e0930e86fd12a033d4fc44d9d5f8ede193b7
parent0b1185cb9dfee747e6bd896e3293b5a1b68d0ddd (diff)
downloadeclipse.pde.build-cff38cc0fcf06caa3b8c0c8a601a92d0382891b6.tar.gz
eclipse.pde.build-cff38cc0fcf06caa3b8c0c8a601a92d0382891b6.tar.xz
eclipse.pde.build-cff38cc0fcf06caa3b8c0c8a601a92d0382891b6.zip
Change-Id: Ie884b7481af220247c0485bc1b9529574aebb706 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 49936a7f..b5d8544b 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