Skip to content

Commit

Permalink
Use more recent Java version
Browse files Browse the repository at this point in the history
Java 6 is now blocked, and CI is blocked.

Issue: CLDSRV-606
  • Loading branch information
williamlardier committed Jan 16, 2025
1 parent 09263fa commit 460ec7e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/functional/jaws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<version>1.0.0</version>
<properties>
<project.custom.encoding>UTF-8</project.custom.encoding>
<project.custom.java.version>1.6</project.custom.java.version>
<project.custom.java.version>1.8</project.custom.java.version>
<maven.compiler.source>${project.custom.java.version}</maven.compiler.source>
<maven.compiler.target>${project.custom.java.version}</maven.compiler.target>
<project.build.sourceEncoding>${project.custom.encoding}</project.build.sourceEncoding>
Expand All @@ -53,6 +53,15 @@
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down

0 comments on commit 460ec7e

Please sign in to comment.