Skip to content

Commit

Permalink
FMA - Montée de version vers JAVA 21 et du plugin Mockito
Browse files Browse the repository at this point in the history
  • Loading branch information
dev31520 authored Feb 7, 2024
1 parent 1717443 commit 746b4fe
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.min.version>11</jdk.min.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jdk.min.version>21</jdk.min.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<junit.version>5.9.2</junit.version>
<jacoco.version>0.8.11</jacoco.version>
<sonar.apiVersion>9.8.0.203</sonar.apiVersion>
Expand Down Expand Up @@ -216,7 +216,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.1.1</version>
<version>5.10.0</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -315,6 +315,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M8</version>
<configuration>
<argLine>-Djava.security.manager=allow</argLine>
</configuration>
</plugin>

<plugin>
Expand Down

0 comments on commit 746b4fe

Please sign in to comment.