|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | | - <groupId>com.baeldung</groupId> |
7 | 6 | <artifactId>spring-testing</artifactId> |
8 | 7 | <version>0.1-SNAPSHOT</version> |
9 | 8 | <name>spring-testing</name> |
10 | 9 |
|
11 | 10 | <parent> |
12 | 11 | <groupId>com.baeldung</groupId> |
13 | | - <artifactId>parent-java</artifactId> |
| 12 | + <artifactId>parent-boot-2</artifactId> |
14 | 13 | <version>0.0.1-SNAPSHOT</version> |
15 | | - <relativePath>../../parent-java</relativePath> |
| 14 | + <relativePath>../../parent-boot-2</relativePath> |
16 | 15 | </parent> |
17 | 16 |
|
18 | 17 | <dependencies> |
|
32 | 31 | <dependency> |
33 | 32 | <groupId>org.springframework.boot</groupId> |
34 | 33 | <artifactId>spring-boot-starter</artifactId> |
35 | | - <version>LATEST</version> |
36 | 34 | </dependency> |
37 | 35 |
|
38 | 36 | <!-- test scoped --> |
39 | 37 | <dependency> |
40 | 38 | <groupId>org.springframework.boot</groupId> |
41 | 39 | <artifactId>spring-boot-starter-test</artifactId> |
42 | | - <version>LATEST</version> |
43 | 40 | <scope>test</scope> |
44 | 41 | </dependency> |
45 | 42 | <dependency> |
46 | 43 | <groupId>org.springframework</groupId> |
47 | 44 | <artifactId>spring-core</artifactId> |
48 | | - <version>LATEST</version> |
| 45 | + <version>${spring.version}</version> |
49 | 46 | </dependency> |
50 | 47 | <dependency> |
51 | 48 | <groupId>org.springframework</groupId> |
52 | 49 | <artifactId>spring-context</artifactId> |
53 | | - <version>LATEST</version> |
| 50 | + <version>${spring.version}</version> |
54 | 51 | </dependency> |
55 | 52 | <dependency> |
56 | 53 | <groupId>org.springframework</groupId> |
|
65 | 62 | <dependency> |
66 | 63 | <groupId>org.springframework.data</groupId> |
67 | 64 | <artifactId>spring-data-jpa</artifactId> |
68 | | - <version>LATEST</version> |
69 | 65 | </dependency> |
70 | 66 | <dependency> |
71 | 67 | <groupId>org.junit.jupiter</groupId> |
|
116 | 112 | <!-- testing --> |
117 | 113 | <java-hamcrest.version>2.0.0.0</java-hamcrest.version> |
118 | 114 | <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> |
122 | 118 | <javax.servlet-api.version>4.0.1</javax.servlet-api.version> |
123 | 119 | <javax.persistence.version>2.1.1</javax.persistence.version> |
124 | 120 | </properties> |
|
0 commit comments