Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-21 14:02:36 +0000
committerMarkus Keller2015-08-26 13:44:42 +0000
commitb09a2f2ce1b1c3fba3ab25e89d3a6f30f543a8b7 (patch)
treee059d496ba4b60279104d3b99bd634b375a7cce8
parent3a718bc27609db132eba13be3fa6b99b516da370 (diff)
downloadeclipse.pde-b09a2f2ce1b1c3fba3ab25e89d3a6f30f543a8b7.tar.gz
eclipse.pde-b09a2f2ce1b1c3fba3ab25e89d3a6f30f543a8b7.tar.xz
eclipse.pde-b09a2f2ce1b1c3fba3ab25e89d3a6f30f543a8b7.zip
Change-Id: Idd26cb26a63f5a3ed3674bd8c79f3ea9a9b71c00 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 aa274fe..312e78e 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