Skip to content

Commit ba8e482

Browse files
committed
update POMs, closes #24
1 parent 764837f commit ba8e482

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

command-producer-consumer/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.3.1.RELEASE</version>
8+
<version>2.3.2.RELEASE</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.learning.by.example.petstore</groupId>
@@ -17,7 +17,7 @@
1717
<properties>
1818
<java.version>11</java.version>
1919
<kotlin.version>1.3.72</kotlin.version>
20-
<testcontainers.version>1.14.2</testcontainers.version>
20+
<testcontainers.version>1.14.3</testcontainers.version>
2121
</properties>
2222

2323
<dependencies>

pet-commands/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.3.1.RELEASE</version>
8+
<version>2.3.2.RELEASE</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.learning.by.example.petstore</groupId>

pet-stream/pom.xml

+21-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.3.1.RELEASE</version>
8+
<version>2.4.0-M1</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.learning.by.example.petstore</groupId>
@@ -17,6 +17,7 @@
1717
<properties>
1818
<java.version>11</java.version>
1919
<kotlin.version>1.3.72</kotlin.version>
20+
<testcontainers.version>1.14.2</testcontainers.version>
2021
</properties>
2122

2223
<dependencies>
@@ -90,27 +91,27 @@
9091
<dependency>
9192
<groupId>org.testcontainers</groupId>
9293
<artifactId>testcontainers</artifactId>
93-
<version>1.14.3</version>
94+
<version>${testcontainers.version}</version>
9495
<scope>test</scope>
9596
</dependency>
9697
<dependency>
9798
<groupId>org.testcontainers</groupId>
9899
<artifactId>junit-jupiter</artifactId>
99-
<version>1.14.3</version>
100+
<version>${testcontainers.version}</version>
100101
<scope>test</scope>
101102
</dependency>
102103

103104
<dependency>
104105
<groupId>org.testcontainers</groupId>
105106
<artifactId>postgresql</artifactId>
106-
<version>1.14.3</version>
107+
<version>${testcontainers.version}</version>
107108
<scope>test</scope>
108109
</dependency>
109110

110111
<dependency>
111112
<groupId>org.testcontainers</groupId>
112113
<artifactId>kafka</artifactId>
113-
<version>1.14.3</version>
114+
<version>${testcontainers.version}</version>
114115
<scope>test</scope>
115116
</dependency>
116117

@@ -167,4 +168,19 @@
167168
</plugins>
168169
</build>
169170

171+
<repositories>
172+
<repository>
173+
<id>spring-milestones</id>
174+
<name>Spring Milestones</name>
175+
<url>https://repo.spring.io/milestone</url>
176+
</repository>
177+
</repositories>
178+
<pluginRepositories>
179+
<pluginRepository>
180+
<id>spring-milestones</id>
181+
<name>Spring Milestones</name>
182+
<url>https://repo.spring.io/milestone</url>
183+
</pluginRepository>
184+
</pluginRepositories>
185+
170186
</project>

reactor-dto-validator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.3.1.RELEASE</version>
8+
<version>2.3.2.RELEASE</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>org.learning.by.example.petstore</groupId>

0 commit comments

Comments
 (0)