|
5 | 5 | <parent>
|
6 | 6 | <groupId>org.springframework.boot</groupId>
|
7 | 7 | <artifactId>spring-boot-starter-parent</artifactId>
|
8 |
| - <version>2.3.1.RELEASE</version> |
| 8 | + <version>2.4.0-M1</version> |
9 | 9 | <relativePath/> <!-- lookup parent from repository -->
|
10 | 10 | </parent>
|
11 | 11 | <groupId>org.learning.by.example.petstore</groupId>
|
|
17 | 17 | <properties>
|
18 | 18 | <java.version>11</java.version>
|
19 | 19 | <kotlin.version>1.3.72</kotlin.version>
|
| 20 | + <testcontainers.version>1.14.2</testcontainers.version> |
20 | 21 | </properties>
|
21 | 22 |
|
22 | 23 | <dependencies>
|
|
90 | 91 | <dependency>
|
91 | 92 | <groupId>org.testcontainers</groupId>
|
92 | 93 | <artifactId>testcontainers</artifactId>
|
93 |
| - <version>1.14.3</version> |
| 94 | + <version>${testcontainers.version}</version> |
94 | 95 | <scope>test</scope>
|
95 | 96 | </dependency>
|
96 | 97 | <dependency>
|
97 | 98 | <groupId>org.testcontainers</groupId>
|
98 | 99 | <artifactId>junit-jupiter</artifactId>
|
99 |
| - <version>1.14.3</version> |
| 100 | + <version>${testcontainers.version}</version> |
100 | 101 | <scope>test</scope>
|
101 | 102 | </dependency>
|
102 | 103 |
|
103 | 104 | <dependency>
|
104 | 105 | <groupId>org.testcontainers</groupId>
|
105 | 106 | <artifactId>postgresql</artifactId>
|
106 |
| - <version>1.14.3</version> |
| 107 | + <version>${testcontainers.version}</version> |
107 | 108 | <scope>test</scope>
|
108 | 109 | </dependency>
|
109 | 110 |
|
110 | 111 | <dependency>
|
111 | 112 | <groupId>org.testcontainers</groupId>
|
112 | 113 | <artifactId>kafka</artifactId>
|
113 |
| - <version>1.14.3</version> |
| 114 | + <version>${testcontainers.version}</version> |
114 | 115 | <scope>test</scope>
|
115 | 116 | </dependency>
|
116 | 117 |
|
|
167 | 168 | </plugins>
|
168 | 169 | </build>
|
169 | 170 |
|
| 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 | + |
170 | 186 | </project>
|
0 commit comments