Skip to content

Commit

Permalink
tech: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
its-felix committed Oct 25, 2024
1 parent 3d71d52 commit df289fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

<groupId>com.gw2auth</groupId>
<artifactId>oauth2-server</artifactId>
<version>1.87.1</version>
<version>1.88.0</version>
<packaging>jar</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.3</version>
<version>3.3.5</version>
<relativePath/>
</parent>

Expand All @@ -21,15 +21,15 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>1.20.1</version>
<version>1.20.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.27.14</version>
<version>2.29.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -53,7 +53,7 @@
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-oauth2-authorization-server</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -95,7 +95,7 @@
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>7.4</version>
<version>8.0</version>
</dependency>
<!-- endregion -->

Expand Down Expand Up @@ -227,7 +227,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.0</version>
<version>3.5.1</version>
<configuration>
<argLine>-XX:+EnableDynamicAgentLoading</argLine>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class CockroachContainerConfiguration {

@Bean
public JdbcDatabaseContainer<?> cockroachDBContainer() throws Exception {
final JdbcDatabaseContainer<?> container = new CockroachContainerProvider().newInstance("v23.2.5");
final JdbcDatabaseContainer<?> container = new CockroachContainerProvider().newInstance("v24.2.4");
container.start();

try (Connection conn = new SimpleDriverDataSource(container.getJdbcDriverInstance(), container.getJdbcUrl(), container.getUsername(), container.getPassword()).getConnection()) {
Expand Down

0 comments on commit df289fa

Please sign in to comment.