diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2016-02-19 00:25:16 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2016-02-19 00:25:16 +0100 |
commit | f6a425cc97b0776d71db801e5baf9d03539e18c0 (patch) | |
tree | 4a86bb8515712e58db2ffa942b96886be80b292a /org.eclipse.jgit.packaging/pom.xml | |
parent | 8bb1b5a7bad672b77c2f14de33ff5065aed291b9 (diff) | |
download | jgit-f6a425cc97b0776d71db801e5baf9d03539e18c0.tar.gz jgit-f6a425cc97b0776d71db801e5baf9d03539e18c0.zip |
Remove the profiles for selecting the target platform
Target platform can be configured directly, e.g.:
$ mvn clean install -Dtarget-platform=jgit-4.6
Set the default to use the Mars target platform.
Change-Id: Ib6075af19be88fa418ecbe4dd7a217d9879e178a
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.packaging/pom.xml')
-rw-r--r-- | org.eclipse.jgit.packaging/pom.xml | 38 |
1 files changed, 1 insertions, 37 deletions
diff --git a/org.eclipse.jgit.packaging/pom.xml b/org.eclipse.jgit.packaging/pom.xml index 68efc46500..9e8a8b8afb 100644 --- a/org.eclipse.jgit.packaging/pom.xml +++ b/org.eclipse.jgit.packaging/pom.xml @@ -61,6 +61,7 @@ <properties> <tycho-version>0.23.0</tycho-version> <tycho-extras-version>${tycho-version}</tycho-extras-version> + <target-platform>jgit-4.5</target-platform> </properties> <pluginRepositories> @@ -228,43 +229,6 @@ <profiles> <profile> - <id>platform-kepler</id> - <activation> - <property> - <name>platform-version-name</name> - <value>kepler</value> - </property> - </activation> - <properties> - <target-platform>jgit-4.3</target-platform> - </properties> - </profile> - <profile> - <id>platform-luna</id> - <activation> - <property> - <name>platform-version-name</name> - <value>luna</value> - </property> - </activation> - <properties> - <target-platform>jgit-4.4</target-platform> - </properties> - </profile> - <profile> - <id>platform-mars</id> - <activation> - <activeByDefault>true</activeByDefault> - <property> - <name>platform-version-name</name> - <value>mars</value> - </property> - </activation> - <properties> - <target-platform>jgit-4.5</target-platform> - </properties> - </profile> - <profile> <id>eclipse-sign</id> <build> <plugins> |