Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2015-08-19 15:52:42 +0000
committerJay Arthanareeswaran2015-08-20 05:23:38 +0000
commit5528f8c07e309d70250a52f7d60d06f5fe77ac0f (patch)
treec76dcf896f4d7870958e5aa8cc8bcbc882b9ac4e
parent3992b640b132d17fc57f3d1350feaff1380732eb (diff)
downloadeclipse.jdt.core-5528f8c07e309d70250a52f7d60d06f5fe77ac0f.tar.gz
eclipse.jdt.core-5528f8c07e309d70250a52f7d60d06f5fe77ac0f.tar.xz
eclipse.jdt.core-5528f8c07e309d70250a52f7d60d06f5fe77ac0f.zip
Bug 471835 - Build succeeds, even when "old" parent pom is referred toM20150826-1000
-rw-r--r--pom.xml36
1 files changed, 23 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index 446edc489b..662072f5d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2015 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -28,18 +28,28 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/jdt/eclipse.jdt.core.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.jdt.annotation</module>

Back to the top