Skip to content

Commit 50e4853

Browse files
Merge pull request #111 from FrankSchnicke/development
Updates Maven compiler to Java 11
2 parents 471a288 + faab11e commit 50e4853

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

basyx.components/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@
7777
<!-- Specifies plugin settings that are common for all submodules -->
7878
<pluginManagement>
7979
<plugins>
80-
<!-- Compile Java sources using Java 8 -->
80+
<!-- Compile Java sources using Java 11 -->
8181
<plugin>
8282
<groupId>org.apache.maven.plugins</groupId>
8383
<artifactId>maven-compiler-plugin</artifactId>
8484
<version>3.8.1</version>
8585
<configuration>
86-
<source>1.8</source>
87-
<target>1.8</target>
86+
<source>11</source>
87+
<target>11</target>
8888
</configuration>
8989
</plugin>
9090

basyx.tck/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
<!-- Specifies plugin settings that are common for all submodules -->
2424
<pluginManagement>
2525
<plugins>
26-
<!-- Compile Java sources using Java 8 -->
26+
<!-- Compile Java sources using Java 11 -->
2727
<plugin>
2828
<groupId>org.apache.maven.plugins</groupId>
2929
<artifactId>maven-compiler-plugin</artifactId>
3030
<version>3.8.1</version>
3131
<configuration>
32-
<source>1.8</source>
33-
<target>1.8</target>
32+
<source>11</source>
33+
<target>11</target>
3434
</configuration>
3535
</plugin>
3636

0 commit comments

Comments
 (0)