Skip to content

Commit

Permalink
Build a JDK-8 Jar (#430) (#431)
Browse files Browse the repository at this point in the history
* Build a JDK-8 Jar (#430)

* Moved source and target config to the compiler plugin

---------

Co-authored-by: Philipp Dallig <[email protected]>
  • Loading branch information
pmckeown and Reamer authored Nov 24, 2024
1 parent a410301 commit acec9c0
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>17</maven.compiler.source>
<maven.compiler.target>17</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 acec9c0

Please sign in to comment.