Skip to content

Commit

Permalink
explicitly specifiying the version of the maven compiler plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ikaddoura committed Jun 3, 2024
1 parent a5c10d3 commit 5b1814c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version> <!-- Updated to a version that supports Java 21 -->
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<!-- This plugin makes source files and javadocs available inside eclipse. In IntelliJ, this works without plugin.-->
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 5b1814c

Please sign in to comment.