Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-08-19 18:44:40 +0000
committerMarkus Keller2015-08-19 18:44:40 +0000
commit0c2a0575118e9a58f095360846cc62e28ed9fff2 (patch)
tree254608cae42884ec374f6edea7e19789d19ef667
parent08420d330db9dba43774a1e38e130b39bdd3b3d3 (diff)
downloadeclipse.platform.resources-0c2a0575118e9a58f095360846cc62e28ed9fff2.tar.gz
eclipse.platform.resources-0c2a0575118e9a58f095360846cc62e28ed9fff2.tar.xz
eclipse.platform.resources-0c2a0575118e9a58f095360846cc62e28ed9fff2.zip
Bug 471835 - Build succeeds, even when "old" parent pom is referred to
Change-Id: I3483c81f82d6ad01fd2e06ae47565b5d94bda306 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 173923a83..36145c186 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,18 +28,28 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.resources.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.core.filesystem</module>

Back to the top