Skip to content

Commit

Permalink
cnescatlab#345 Maj dependencies and pluggin version
Browse files Browse the repository at this point in the history
  • Loading branch information
theljade committed Feb 10, 2023
1 parent b2cb75e commit 0122506
Showing 1 changed file with 20 additions and 27 deletions.
47 changes: 20 additions & 27 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.min.version>1.8</jdk.min.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>4.13.2</junit.version>
<jacoco.version>0.8.7</jacoco.version>
<jdk.min.version>11</jdk.min.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<junit.version>5.9.2</junit.version>
<jacoco.version>0.8.8</jacoco.version>
<sonar.apiVersion>9.14.0.375</sonar.apiVersion>
<sonar.core.ws.version>9.9.0.65466</sonar.core.ws.version>
<sonar-packaging-maven-plugin.version>1.20.0.405</sonar-packaging-maven-plugin.version>
<sonar-packaging-maven-plugin.version>1.21.0.505</sonar-packaging-maven-plugin.version>
<sonar.pluginKey>cnesreport</sonar.pluginKey>
<sonar.pluginUrl>https://github.com/cnescatlab/sonar-cnes-report</sonar.pluginUrl>
<sonar.pluginOrganizationName>CNES</sonar.pluginOrganizationName>
Expand Down Expand Up @@ -78,13 +78,13 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.8</version>
<version>1.10.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.31</version>
<version>2.0.6</version>
<scope>compile</scope>
</dependency>
<!-- Here is a new group id -->
Expand All @@ -109,7 +109,7 @@
<!-- network use -->
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
<version>4.5.14</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -149,13 +149,13 @@
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1.1-jre</version>
<version>31.1-jre</version>
</dependency>
<dependency>
<!-- json parsing -->
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<version>2.10.1</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -168,7 +168,7 @@
<!-- openxml generation -->
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
<version>5.2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -193,7 +193,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.2</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -205,7 +205,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.12.4</version>
<version>5.1.1</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -236,7 +236,7 @@

<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -270,7 +270,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.10.1</version>
<configuration>
<source>${jdk.min.version}</source>
<target>${jdk.min.version}</target>
Expand All @@ -281,7 +281,7 @@
<!-- UTF-8 bundles are not supported by Java, so they must be converted during build -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>native2ascii-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<version>2.0.1</version>
<executions>
<execution>
<?m2e execute onConfiguration?>
Expand All @@ -295,7 +295,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.1.2</version>
<version>3.4.2</version>
<configuration>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
Expand All @@ -304,14 +304,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>3.0.0-M5</version>
</dependency>
</dependencies>
<version>3.0.0-M8</version>
</plugin>

<plugin>
Expand Down Expand Up @@ -351,7 +344,7 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.11.3</version>
<version>1.12.1</version>
<executions>
<execution>
<phase>generate-resources</phase>
Expand Down

0 comments on commit 0122506

Please sign in to comment.