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 Mar 3, 2024
1 parent 956ad30 commit 2ae2113
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 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.69.1</version>
<version>1.70.0</version>
<packaging>jar</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.2</version>
<version>3.2.3</version>
<relativePath/>
</parent>

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

<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.23.14</version>
<version>2.25.1</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.2.1</version>
<version>1.2.2</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -125,7 +125,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20231013</version>
<version>20240205</version>
</dependency>
<!-- endregion -->

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.1.8");
final JdbcDatabaseContainer<?> container = new CockroachContainerProvider().newInstance("v23.1.15");
container.start();

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

0 comments on commit 2ae2113

Please sign in to comment.