浏览代码

Updated to JDK 10

Sebastian Stenzel 6 年之前
父节点
当前提交
143070d02d
共有 3 个文件被更改,包括 5 次插入5 次删除
  1. 1 1
      .travis.yml
  2. 1 1
      main/ant-kit/src/main/resources/build.xml
  3. 3 3
      main/pom.xml

+ 1 - 1
.travis.yml

@@ -1,7 +1,7 @@
 language: java
 sudo: false
 jdk:
-- oraclejdk9
+- oraclejdk10
 branches:
   except:
   - continuous # To avoid infinite loops, as this tag is created by this Travis config

+ 1 - 1
main/ant-kit/src/main/resources/build.xml

@@ -31,7 +31,7 @@
 		<fx:deploy nativeBundles="image" outdir="antbuild" verbose="true">
 			<fx:application refid="Cryptomator" />
 			<fx:info title="Cryptomator" vendor="cryptomator.org" copyright="cryptomator.org" license="GPL" category="Utility"/>
-			<fx:platform j2se="9.0">
+			<fx:platform j2se="10">
 				<fx:property name="logback.configurationFile" value="\${antbuild.logback.configurationFile}" />
 				<fx:property name="cryptomator.settingsPath" value="\${antbuild.cryptomator.settingsPath}" />
 				<fx:property name="cryptomator.ipcPortPath" value="\${antbuild.cryptomator.ipcPortPath}" />

+ 3 - 3
main/pom.xml

@@ -317,9 +317,9 @@
 				<artifactId>maven-compiler-plugin</artifactId>
 				<version>3.7.0</version>
 				<configuration>
-					<source>9</source>
-					<target>9</target>
-					<release>9</release>
+					<source>10</source>
+					<target>10</target>
+					<release>10</release>
 					<compilerArgs>
 						<arg>--add-modules</arg>
 						<arg>jdk.incubator.httpclient</arg>