Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-08-28 06:57:41 +0000
committerDavid Williams2015-08-28 06:57:41 +0000
commit4b568d50bc2e81e8920ea8736a2797791a17fab2 (patch)
treefeac61ce2efc3305e97ad7c06efb9119d6416945 /eclipse-platform-parent/pom.xml
parentb2b4f0af7f7b2994dd61276fb3afed0dff850eeb (diff)
downloadeclipse.platform.releng.aggregator-4b568d50bc2e81e8920ea8736a2797791a17fab2.tar.gz
eclipse.platform.releng.aggregator-4b568d50bc2e81e8920ea8736a2797791a17fab2.tar.xz
eclipse.platform.releng.aggregator-4b568d50bc2e81e8920ea8736a2797791a17fab2.zip
Bug 464587 - [BETA_JAVA9] Build Eclipse SDK from 'BETA_JAVA9' branches
Changes to build a patched feature.
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml17
1 files changed, 16 insertions, 1 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 9df983a09..8a422fa13 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -155,6 +155,8 @@
-->
<jgit.dirtyWorkingTree>ignore</jgit.dirtyWorkingTree>
+ <qualifier.format>'v'yyyyMMdd-HHmm</qualifier.format>
+
</properties>
<distributionManagement>
@@ -484,7 +486,7 @@
</dependencies>
<configuration>
<strictBinIncludes>false</strictBinIncludes>
- <format>'v'yyyyMMdd-HHmm</format>
+ <format>${qualifier.format}</format>
<timestampProvider>jgit</timestampProvider>
<jgit.ignore>
pom.xml
@@ -568,6 +570,19 @@
</build>
<profiles>
<profile>
+ <id>patchBuild</id>
+ <properties>
+ <qualifier.format>'v'yyyyMMdd-HHmm'_BETA_JAVA9'</qualifier.format>
+ </properties>
+ <repositories>
+ <repository>
+ <id>eclipse-p2-repo-java9patch</id>
+ <url>http://download.eclipse.org/eclipse/updates/4.6-I-builds/</url>
+ <layout>p2</layout>
+ </repository>
+ </repositories>
+ </profile>
+ <profile>
<id>build-individual-bundles</id>
<repositories>
<repository>

Back to the top