diff options
| author | Jay Arthanareeswaran | 2015-08-19 15:52:42 +0000 |
|---|---|---|
| committer | Jay Arthanareeswaran | 2015-08-20 05:23:38 +0000 |
| commit | 5528f8c07e309d70250a52f7d60d06f5fe77ac0f (patch) | |
| tree | c76dcf896f4d7870958e5aa8cc8bcbc882b9ac4e | |
| parent | 3992b640b132d17fc57f3d1350feaff1380732eb (diff) | |
| download | eclipse.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
Change-Id: I5f2f808f5b740e28f44ac71c9c6852c8c0a8b1cf
| -rw-r--r-- | pom.xml | 36 |
1 files changed, 23 insertions, 13 deletions
@@ -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> |
