Skip to content

Commit

Permalink
Fixes #69 - Update to Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
Automated workflow committed Oct 19, 2023
1 parent 20023cf commit c9f808b
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pom.xml
Expand Up @@ -20,6 +20,13 @@
<url>https://github.com/manorrock/oyena/blob/master/LICENSE</url>
</license>
</licenses>
<properties>
<!-- other -->
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
<jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
</properties>
<build>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -91,7 +98,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>${jacoco-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
Expand All @@ -101,8 +108,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>17</source>
<target>17</target>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -269,9 +275,6 @@
</build>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:git://github.com/manorrock/oyena.git</connection>
<developerConnection>scm:git:git@github.com:manorrock/oyena.git</developerConnection>
Expand Down

0 comments on commit c9f808b

Please sign in to comment.