Skip to content

Commit

Permalink
Moved source and target config to the compiler plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
pmckeown committed Nov 24, 2024
1 parent 73c558a commit 64bcd98
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.version>3.9.5</maven.version>
</properties>

Expand Down Expand Up @@ -218,8 +216,14 @@
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.13.0</version>
<configuration>
<release>8</release>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
Expand Down

0 comments on commit 64bcd98

Please sign in to comment.