Skip to content

Commit

Permalink
Issue #SBCOSS-211 fix: Updated pom file to use the maven compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
aimansharief committed Oct 17, 2024
1 parent a6e1dc6 commit 84e7c90
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions java/claim/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,22 +85,23 @@
<version>${slf4j-api.version}</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.9.0</version>
<configuration>
<source>11</source>
<target>11</target>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 84e7c90

Please sign in to comment.