Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-19 18:45:26 +0000
committerMarkus Keller2015-08-19 18:47:51 +0000
commit7d572cec4c7ccc179d0c13ef44998a8d746148cb (patch)
treebe55f4994755cc0a1dbc96a7806671d11503d9c2
parent3c65c92601f0ffbacf84132c90a4959be78df0de (diff)
downloadeclipse.platform.team-7d572cec4c7ccc179d0c13ef44998a8d746148cb.tar.gz
eclipse.platform.team-7d572cec4c7ccc179d0c13ef44998a8d746148cb.tar.xz
eclipse.platform.team-7d572cec4c7ccc179d0c13ef44998a8d746148cb.zip
Change-Id: I296e3dbe6c6d11aa1926eb546090835e651433c3 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 20c679a3d..7d52e6c6b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,18 +28,28 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.team.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.compare</module>

Back to the top