Skip to content
Snippets Groups Projects
Commit 615e98fc authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#505 - migrate to java 11

parent 980973b3
No related branches found
No related tags found
No related merge requests found
Pipeline #3634 failed
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version> <java.version>11</java.version>
<jlibs.version>2.0.6</jlibs.version> <jlibs.version>2.0.6</jlibs.version>
<versionizer.version>1.2.1</versionizer.version> <versionizer.version>1.2.1</versionizer.version>
...@@ -245,7 +245,7 @@ ...@@ -245,7 +245,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version> <version>3.3.1</version>
<configuration> <configuration>
<webappDirectory>${basedir}/src/main</webappDirectory> <webappDirectory>${basedir}/src/main</webappDirectory>
<outputDirectory>${project.outputDirectory}</outputDirectory> <outputDirectory>${project.outputDirectory}</outputDirectory>
...@@ -264,7 +264,7 @@ ...@@ -264,7 +264,7 @@
<plugin> <plugin>
<groupId>com.akathist.maven.plugins.launch4j</groupId> <groupId>com.akathist.maven.plugins.launch4j</groupId>
<artifactId>launch4j-maven-plugin</artifactId> <artifactId>launch4j-maven-plugin</artifactId>
<version>1.7.21</version> <version>1.7.25</version>
<executions> <executions>
<execution> <execution>
<id>l4j-clui</id> <id>l4j-clui</id>
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
<jre> <jre>
<bundledJre64Bit>false</bundledJre64Bit> <bundledJre64Bit>false</bundledJre64Bit>
<bundledJreAsFallback>false</bundledJreAsFallback> <bundledJreAsFallback>false</bundledJreAsFallback>
<minVersion>1.8.0</minVersion> <minVersion>11</minVersion>
<jdkPreference>preferJre</jdkPreference> <jdkPreference>preferJre</jdkPreference>
<runtimeBits>64/32</runtimeBits> <runtimeBits>64/32</runtimeBits>
</jre> </jre>
...@@ -296,7 +296,7 @@ ...@@ -296,7 +296,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version> <version>2.22.1</version>
<configuration> <configuration>
<junitArtifactName>junit:junit</junitArtifactName> <junitArtifactName>junit:junit</junitArtifactName>
<argLine>-Dfile.encoding=UTF-8</argLine> <argLine>-Dfile.encoding=UTF-8</argLine>
...@@ -311,7 +311,7 @@ ...@@ -311,7 +311,7 @@
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId> <artifactId>build-helper-maven-plugin</artifactId>
<version>1.10</version> <version>1.12</version>
<executions> <executions>
<execution> <execution>
<id>attach-artifacts</id> <id>attach-artifacts</id>
......
...@@ -7,6 +7,8 @@ spring.jpa.properties.jadira.usertype.autoRegisterUserTypes = true ...@@ -7,6 +7,8 @@ spring.jpa.properties.jadira.usertype.autoRegisterUserTypes = true
spring.servlet.multipart.max-file-size=100MB spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=100MB spring.servlet.multipart.max-request-size=100MB
server.ssl.enabled-protocols=TLSv1.2
logging.level.root=INFO logging.level.root=INFO
#logging.level.org.springframework=ERROR #logging.level.org.springframework=ERROR
logging.level.de.deadlocker8=DEBUG logging.level.de.deadlocker8=DEBUG
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment