diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2016-08-26 01:36:28 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2016-09-20 11:32:36 +0200 |
commit | ab79ce91c10830f9906a1311ec857ccf553f51fe (patch) | |
tree | f0e20e5e3b4ea9fa774d32b7d7b453d7aa919d7d /pom.xml | |
parent | e4e39a6d05b846b0b1f4cd42894bbdf950b37554 (diff) | |
download | jgit-ab79ce91c10830f9906a1311ec857ccf553f51fe.tar.gz jgit-ab79ce91c10830f9906a1311ec857ccf553f51fe.zip |
Change JGit minimum execution environment to JavaSE-1.8
Bug: 500059
Change-Id: I47f3f6749a67da52029f84e002d9b155ed56d2b7
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 4 insertions, 10 deletions
@@ -263,8 +263,8 @@ <version>3.5.1</version> <configuration> <encoding>UTF-8</encoding> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> <compilerArguments> <bootclasspath>${JDK_HOME}${file.separator}jre${file.separator}lib${file.separator}rt.jar${path.separator}${JDK_HOME}${file.separator}jre${file.separator}lib${file.separator}jsse.jar${path.separator}${JDK_HOME}${file.separator}jre${file.separator}lib${file.separator}jce.jar</bootclasspath> </compilerArguments> @@ -346,7 +346,7 @@ <configuration> <sourceEncoding>utf-8</sourceEncoding> <minimumTokens>100</minimumTokens> - <targetJdk>1.7</targetJdk> + <targetJdk>1.8</targetJdk> <format>xml</format> <failOnViolation>false</failOnViolation> </configuration> @@ -459,7 +459,7 @@ <quiet>true</quiet> <excludePackageNames>org.eclipse.jgit.http.test</excludePackageNames> <links> - <link>http://docs.oracle.com/javase/7/docs/api</link> + <link>http://docs.oracle.com/javase/8/docs/api</link> </links> </configuration> <executions> @@ -668,12 +668,6 @@ <profiles> <profile> - <id>jgit.java7</id> - <activation> - <jdk>[1.7,)</jdk> - </activation> - </profile> - <profile> <id>jgit.java8</id> <activation> <jdk>[1.8,)</jdk> |