Skip to content
Snippets Groups Projects
Commit 871e17af authored by Olivier Maury's avatar Olivier Maury
Browse files

build(deps): :arrow_up: Mettre à jour les dépendances

parent cdf18280
No related branches found
No related tags found
1 merge request!132Mettre à jour les dépendances
Pipeline #255048 passed
......@@ -69,9 +69,9 @@
<gwt.version>2.11.0</gwt.version>
<hibernate.version>6.2.22.Final</hibernate.version>
<jax.rs.version>3.1.0</jax.rs.version>
<jersey.version>3.1.5</jersey.version>
<jersey.version>3.1.8</jersey.version>
<junit.version>5.10.3</junit.version>
<log4j.version>2.23.1</log4j.version>
<log4j.version>2.24.1</log4j.version>
<lombok.version>1.18.30</lombok.version>
<weld.version>4.0.3.Final</weld.version>
<!-- Maven environment values -->
......@@ -89,11 +89,11 @@
<checkstyle.includeTestResources>false</checkstyle.includeTestResources>
<checkstyle.includeTestSourceDirectory>true</checkstyle.includeTestSourceDirectory>
<checkstyle.version>3.3.1</checkstyle.version>
<compiler-plugin.version>3.12.1</compiler-plugin.version>
<compiler-plugin.version>3.13.0</compiler-plugin.version>
<jacoco.version>0.8.11</jacoco.version>
<javadoc.version>3.6.2</javadoc.version>
<javase.api.link>https://docs.oracle.com/en/java/javase/17/docs/api/</javase.api.link>
<pmd.version>3.21.2</pmd.version>
<pmd.version>3.25.0</pmd.version>
<sloccount.path>bin/sloccount.sh</sloccount.path>
<spotbugs.version>4.8.2.0</spotbugs.version>
<!-- Text format -->
......@@ -417,36 +417,6 @@
</configuration>
</plugin>
<!-- Generate PlantUML diagrams -->
<!-- https://github.com/davidmoten/plantuml-maven-plugin -->
<!-- http://mvnrepository.com/artifact/com.github.davidmoten/plantuml-maven-plugin -->
<!-- mvn clean com.github.davidmoten:plantuml-maven-plugin:generate -->
<plugin>
<groupId>com.github.davidmoten</groupId>
<artifactId>plantuml-maven-plugin</artifactId>
<version>0.2.3</version>
<executions>
<execution>
<id>generate-diagrams</id>
<phase>generate-resources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<sources>
<directory>${basedir}/src/site/resources/images</directory>
<includes>
<include>**/*.puml</include>
</includes>
</sources>
<outputDirectory>${project.build.directory}/site/images</outputDirectory>
<formats>
<format>svg</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
......@@ -498,7 +468,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
......@@ -549,12 +519,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.5.0</version>
<version>3.7.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.1</version>
<version>3.20.0</version>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
......@@ -596,7 +566,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.3.2</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
......
......@@ -77,7 +77,7 @@
<dependency>
<groupId>com.github.tdesjardins</groupId>
<artifactId>gwt-ol3</artifactId>
<version>8.4.1</version>
<version>8.5.0</version>
</dependency>
</dependencies>
......
......@@ -36,10 +36,10 @@ public abstract class ControlSuppliers {
*/
public static Collection<Control> createAllControls() {
final Collection<Control> controls = new Collection<>();
controls.insertAt(0, ControlSuppliers.createZoom());
controls.insertAt(0, ControlSuppliers.createDownloadButton());
controls.insertAt(0, ControlSuppliers.createFullScreen());
controls.insertAt(0, ControlSuppliers.createLayerSwitcher());
controls.insertAt(0, createZoom());
controls.insertAt(0, createDownloadButton());
controls.insertAt(0, createFullScreen());
controls.insertAt(0, createLayerSwitcher());
return controls;
}
......
......@@ -171,7 +171,6 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>de.ruedigermoeller</groupId>
......
......@@ -39,7 +39,7 @@ public enum QuantileType {
* @return the quantile for the number of classes
*/
public static QuantileType valueOf(final int nbOfClasses) {
for (final QuantileType q : QuantileType.values()) {
for (final QuantileType q : values()) {
if (q.getNbOfClasses() == nbOfClasses) {
return q;
}
......
......@@ -36,7 +36,7 @@ public interface GeometryService {
* @return PRA id ⮕ PRA name
*/
@GET
@Path(GeometryService.PATH_PRA_NAMES)
@Path(PATH_PRA_NAMES)
@Produces(MediaType.APPLICATION_JSON)
Map<String, String> getPraAsJSON();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment