Skip to content

Commit

Permalink
Merge pull request #39 from groldan/deps/upgrade
Browse files Browse the repository at this point in the history
Dependency upgrades to latest releases
  • Loading branch information
groldan authored Dec 16, 2023
2 parents e212016 + 5d3459a commit 4c542c8
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 27 deletions.
2 changes: 1 addition & 1 deletion src/openapi/spring5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.2.18</version>
<version>2.2.19</version>
</dependency>
<dependency>
<!-- @javax.annotation.Nullable annotation -->
Expand Down
2 changes: 1 addition & 1 deletion src/openapi/spring6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.2.18</version>
<version>2.2.19</version>
</dependency>
<dependency>
<!-- @javax.annotation.Nullable annotation -->
Expand Down
10 changes: 10 additions & 0 deletions src/plugin/accessmanager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,15 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
7 changes: 0 additions & 7 deletions src/plugin/config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,6 @@
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.16.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
24 changes: 12 additions & 12 deletions src/plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,18 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.17.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -148,18 +160,6 @@
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.16.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
Expand Down
10 changes: 10 additions & 0 deletions src/plugin/web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,16 @@
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
Expand Down
2 changes: 0 additions & 2 deletions src/plugin/wps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,11 @@
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.16.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
14 changes: 10 additions & 4 deletions src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,19 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<spring-cloud.version>2021.0.8</spring-cloud.version>
<spring-boot.version>2.7.15</spring-boot.version>
<spring-boot-3.version>3.0.10</spring-boot-3.version>
<spring-boot.version>2.7.18</spring-boot.version>
<spring-boot-3.version>3.0.13</spring-boot-3.version>
<!-- GeoTools version used by gs-acl-authorization, doesn't need to match any version used by GeoServer -->
<gt.version>30.0</gt.version>
<jts.version>1.19.0</jts.version>
<lombok.version>1.18.26</lombok.version>
<lombok.version>1.18.30</lombok.version>
<mapstruct.version>1.5.3.Final</mapstruct.version>
<testcontainers.version>1.19.3</testcontainers.version>
<geolatte.version>1.8.2</geolatte.version>
<querydsl.version>5.0.0</querydsl.version>
<springdoc.version>1.7.0</springdoc.version>
<caffeine.version>3.1.2</caffeine.version>
<caffeine.version>3.1.8</caffeine.version>
<flyway.version>9.22.3</flyway.version>
<fork.javac>true</fork.javac>
<javac.maxHeapSize>256M</javac.maxHeapSize>
</properties>
Expand Down Expand Up @@ -134,6 +135,11 @@
<artifactId>querydsl-jpa</artifactId>
<version>${querydsl.version}</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>${flyway.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down

0 comments on commit 4c542c8

Please sign in to comment.