Skip to content

Commit

Permalink
chore: bump minimum java version for sources/javadoc/building/running…
Browse files Browse the repository at this point in the history
… to 11
  • Loading branch information
bpossolo committed Nov 28, 2023
1 parent d1592cf commit 4d8119a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
</properties>

<build>
Expand Down Expand Up @@ -89,8 +90,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
Expand Down Expand Up @@ -120,7 +121,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.2</version>
<configuration>
<source>1.8</source>
<source>${java.version}</source>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 4d8119a

Please sign in to comment.