Skip to content

Commit a88c552

Browse files
committed
JAVA-3580: Migrate spring-testing to the parent-boot-2
1 parent bd3f54e commit a88c552

1 file changed

Lines changed: 7 additions & 11 deletions

File tree

  • testing-modules/spring-testing

testing-modules/spring-testing/pom.xml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.baeldung</groupId>
76
<artifactId>spring-testing</artifactId>
87
<version>0.1-SNAPSHOT</version>
98
<name>spring-testing</name>
109

1110
<parent>
1211
<groupId>com.baeldung</groupId>
13-
<artifactId>parent-java</artifactId>
12+
<artifactId>parent-boot-2</artifactId>
1413
<version>0.0.1-SNAPSHOT</version>
15-
<relativePath>../../parent-java</relativePath>
14+
<relativePath>../../parent-boot-2</relativePath>
1615
</parent>
1716

1817
<dependencies>
@@ -32,25 +31,23 @@
3231
<dependency>
3332
<groupId>org.springframework.boot</groupId>
3433
<artifactId>spring-boot-starter</artifactId>
35-
<version>LATEST</version>
3634
</dependency>
3735

3836
<!-- test scoped -->
3937
<dependency>
4038
<groupId>org.springframework.boot</groupId>
4139
<artifactId>spring-boot-starter-test</artifactId>
42-
<version>LATEST</version>
4340
<scope>test</scope>
4441
</dependency>
4542
<dependency>
4643
<groupId>org.springframework</groupId>
4744
<artifactId>spring-core</artifactId>
48-
<version>LATEST</version>
45+
<version>${spring.version}</version>
4946
</dependency>
5047
<dependency>
5148
<groupId>org.springframework</groupId>
5249
<artifactId>spring-context</artifactId>
53-
<version>LATEST</version>
50+
<version>${spring.version}</version>
5451
</dependency>
5552
<dependency>
5653
<groupId>org.springframework</groupId>
@@ -65,7 +62,6 @@
6562
<dependency>
6663
<groupId>org.springframework.data</groupId>
6764
<artifactId>spring-data-jpa</artifactId>
68-
<version>LATEST</version>
6965
</dependency>
7066
<dependency>
7167
<groupId>org.junit.jupiter</groupId>
@@ -116,9 +112,9 @@
116112
<!-- testing -->
117113
<java-hamcrest.version>2.0.0.0</java-hamcrest.version>
118114
<awaitility.version>3.1.6</awaitility.version>
119-
<junit.jupiter.version>5.5.0</junit.jupiter.version>
120-
<junit.commons.version>1.5.2</junit.commons.version>
121-
<spring.version>5.1.4.RELEASE</spring.version>
115+
<junit.jupiter.version>5.7.0</junit.jupiter.version>
116+
<junit.commons.version>1.7.0</junit.commons.version>
117+
<spring.version>5.2.8.RELEASE</spring.version>
122118
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
123119
<javax.persistence.version>2.1.1</javax.persistence.version>
124120
</properties>

0 commit comments

Comments
 (0)