Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sivaprasadreddy committed Aug 29, 2023
1 parent cbb2bd5 commit 5a4a2bd
Show file tree
Hide file tree
Showing 19 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions micronaut-jpa-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>io.micronaut.platform</groupId>
<artifactId>micronaut-parent</artifactId>
<version>4.0.3</version>
<version>4.0.5</version>
<relativePath/>
</parent>

<properties>
<packaging>jar</packaging>
<jdk.version>17</jdk.version>
<release.version>17</release.version>
<micronaut.version>4.1.0</micronaut.version>
<micronaut.version>4.1.2</micronaut.version>
<micronaut.data.version>4.0.4</micronaut.data.version>
<micronaut.test.resources.enabled>true</micronaut.test.resources.enabled>
<micronaut.runtime>netty</micronaut.runtime>
Expand Down
4 changes: 2 additions & 2 deletions quarkus-jpa-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.2.4.Final</quarkus.platform.version>
<quarkus.platform.version>3.3.0</quarkus.platform.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-couchbase-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,7 +15,7 @@
<description>spring-boot-couchbase-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-jpa-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,7 +15,7 @@
<description>spring-boot-jpa-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-kafka-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -17,7 +17,7 @@
<description>spring-boot-kafka-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-localstack-demo/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.8'
services:
localstack:
image: localstack/localstack:2.0
image: localstack/localstack:2.2
ports:
- "4566:4566"
environment:
Expand Down
6 changes: 3 additions & 3 deletions spring-boot-localstack-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,8 +15,8 @@
<description>spring-boot-localstack-demo</description>
<properties>
<java.version>17</java.version>
<awspring.version>3.0.1</awspring.version>
<testcontainers.version>1.18.3</testcontainers.version>
<awspring.version>3.0.2</awspring.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@SpringBootTest
abstract class AbstractIntegrationTest {

static LocalStackContainer localStack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.0"));
static LocalStackContainer localStack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.2"));

static final String BUCKET_NAME = UUID.randomUUID().toString();
static final String QUEUE_NAME = UUID.randomUUID().toString();
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-microservices/product-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -18,7 +18,7 @@
<properties>
<java.version>17</java.version>
<resilience4jVersion>2.1.0</resilience4jVersion>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-microservices/promotion-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-mockserver-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,7 +15,7 @@
<description>spring-boot-mockserver-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-mongodb-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,7 +15,7 @@
<description>spring-boot-mongodb-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-oracle-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,7 +15,7 @@
<description>spring-boot-oracle-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-rabbitmq-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,7 +15,7 @@
<description>spring-boot-rabbitmq-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring-boot-wiremock-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -15,7 +15,7 @@
<description>spring-boot-wiremock-demo</description>
<properties>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion tc-basics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions tc-docker-compose/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -16,7 +16,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions tc-dockerfile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>

<dependencies>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.3</version>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion tc-testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<testcontainers.version>1.18.3</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 5a4a2bd

Please sign in to comment.