Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
Bucket4j 8.4.0 -> 8.7.0
Spring Boot 3.1.4 -> 3.1.6
Spring Cloud Gateway 4.0.7 -> 4.0.8

examples:
jedis 5.0.1 -> 5.1.0
redisson 3.23.5 -> 3.24.3
jaxb 4.0.3 -> 4.0.4
infinispan-spring-boot-starter-embedded -> infinispan-spring-boot3-starter-embedded
  • Loading branch information
MarcGiffing committed Nov 28, 2023
1 parent 9f66fc8 commit 79f4a21
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bucket4j-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
<redisson.version>3.23.5</redisson.version>
<redisson.version>3.24.3</redisson.version>
<ignite-core.version>2.15.0</ignite-core.version>
</properties>
<dependencies>
Expand Down
5 changes: 3 additions & 2 deletions examples/ehcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<jaxb-core.version>4.0.4</jaxb-core.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -58,12 +59,12 @@
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>4.0.3</version>
<version>${jaxb-core.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>4.0.3</version>
<version>${jaxb-core.version}</version>
</dependency>
<dependency>
<groupId>org.ehcache</groupId>
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-jedis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<testcontainers-redis-junit.version>1.6.4</testcontainers-redis-junit.version>
<jedis.version>5.0.1</jedis.version>
<jedis.version>5.1.0</jedis.version>
</properties>

<dependencies>
Expand Down
8 changes: 1 addition & 7 deletions examples/webflux-infinispan/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,7 @@
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-spring-boot-starter-embedded</artifactId>
<exclusions>
<exclusion>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
</exclusion>
</exclusions>
<artifactId>infinispan-spring-boot3-starter-embedded</artifactId>
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
Expand Down
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.4</version>
<version>3.1.6</version>
<relativePath />
</parent>
<modules>
Expand All @@ -25,11 +25,10 @@
<module>examples/gateway</module>
<module>examples/redis-jedis</module>
<module>examples/redis-lettuce</module>
<!--
<module>examples/redis-redisson</module>
<!--
Spring Boot 3 not Supported!?
-->
<module>examples/webflux-infinispan</module>
-->
</modules>
<url>https://github.com/MarcGiffing/bucket4j-spring-boot-starter</url>
<licenses>
Expand All @@ -49,8 +48,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
<bucket4j.version>8.4.0</bucket4j.version>
<spring-cloud-starter-gateway.version>4.0.7</spring-cloud-starter-gateway.version>
<bucket4j.version>8.7.0</bucket4j.version>
<spring-cloud-starter-gateway.version>4.0.8</spring-cloud-starter-gateway.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit 79f4a21

Please sign in to comment.