diff options
| author | Lars Vogel | 2015-08-19 22:20:16 +0000 |
|---|---|---|
| committer | Lars Vogel | 2015-08-19 22:21:40 +0000 |
| commit | 46014c5bd11d5274722cbaedc32c86f646e0c18a (patch) | |
| tree | 724496f43e71871edccde88f5e7a747522266772 | |
| parent | 08f49c72e8441fd91832d94f3be86ada56930a4d (diff) | |
| download | eclipse.pde.ui-46014c5bd11d5274722cbaedc32c86f646e0c18a.tar.gz eclipse.pde.ui-46014c5bd11d5274722cbaedc32c86f646e0c18a.tar.xz eclipse.pde.ui-46014c5bd11d5274722cbaedc32c86f646e0c18a.zip | |
Bug 471835 - Build succeeds, even when "old" parent pom is referred toM20150827-0400M20150826-1000
Updated the R4_5_maintenance branch
Change-Id: I4c436cb4def7038cd15ed812dfab0b98b529d276
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
| -rw-r--r-- | pom.xml | 34 |
1 files changed, 22 insertions, 12 deletions
@@ -28,18 +28,28 @@ <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/pde/eclipse.pde.ui.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>apitools/org.eclipse.pde.api.tools</module> |
