|
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> |
6 | 7 | <artifactId>spring-testing</artifactId> |
7 | 8 | <version>0.1-SNAPSHOT</version> |
8 | 9 | <name>spring-testing</name> |
9 | 10 |
|
10 | | - <parent> |
11 | | - <groupId>com.baeldung</groupId> |
12 | | - <artifactId>parent-boot-2</artifactId> |
13 | | - <version>0.0.1-SNAPSHOT</version> |
14 | | - <relativePath>../../parent-boot-2</relativePath> |
15 | | - </parent> |
16 | | - |
17 | 11 | <dependencies> |
| 12 | + <dependency> |
| 13 | + <groupId>ch.qos.logback</groupId> |
| 14 | + <artifactId>logback-classic</artifactId> |
| 15 | + <version>1.5.0</version> |
| 16 | + <scope>test</scope> |
| 17 | + </dependency> |
18 | 18 | <dependency> |
19 | 19 | <groupId>org.hamcrest</groupId> |
20 | 20 | <artifactId>java-hamcrest</artifactId> |
|
23 | 23 | <dependency> |
24 | 24 | <groupId>org.projectlombok</groupId> |
25 | 25 | <artifactId>lombok</artifactId> |
26 | | - <version>${lombok.version}</version> |
| 26 | + <version>1.18.30</version> |
27 | 27 | <scope>provided</scope> |
28 | 28 | </dependency> |
29 | 29 | <dependency> |
30 | 30 | <groupId>org.springframework.boot</groupId> |
31 | 31 | <artifactId>spring-boot-starter</artifactId> |
| 32 | + <version>3.2.2</version> |
| 33 | + <exclusions> |
| 34 | + <exclusion> |
| 35 | + <groupId>org.springframework.boot</groupId> |
| 36 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 37 | + </exclusion> |
| 38 | + </exclusions> |
32 | 39 | </dependency> |
33 | | - <!-- test scoped --> |
34 | 40 | <dependency> |
35 | 41 | <groupId>org.springframework.boot</groupId> |
36 | | - <artifactId>spring-boot-starter-test</artifactId> |
37 | | - <scope>test</scope> |
| 42 | + <artifactId>spring-boot</artifactId> |
| 43 | + <version>3.2.2</version> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.springframework.data</groupId> |
| 47 | + <artifactId>spring-data-jpa</artifactId> |
| 48 | + <version>3.2.2</version> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework.data</groupId> |
| 52 | + <artifactId>spring-data-commons</artifactId> |
| 53 | + <version>3.2.2</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.springframework</groupId> |
| 57 | + <artifactId>spring-beans</artifactId> |
| 58 | + <version>${spring.version}</version> |
38 | 59 | </dependency> |
39 | 60 | <dependency> |
40 | 61 | <groupId>org.springframework</groupId> |
41 | 62 | <artifactId>spring-core</artifactId> |
42 | 63 | <version>${spring.version}</version> |
| 64 | + <scope>compile</scope> |
43 | 65 | </dependency> |
44 | 66 | <dependency> |
45 | 67 | <groupId>org.springframework</groupId> |
46 | 68 | <artifactId>spring-context</artifactId> |
47 | 69 | <version>${spring.version}</version> |
48 | 70 | </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.springframework</groupId> |
| 73 | + <artifactId>spring-expression</artifactId> |
| 74 | + <version>${spring.version}</version> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework</groupId> |
| 78 | + <artifactId>spring-test</artifactId> |
| 79 | + <version>${spring.version}</version> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.springframework</groupId> |
| 83 | + <artifactId>spring-web</artifactId> |
| 84 | + <version>${spring.version}</version> |
| 85 | + </dependency> |
49 | 86 | <dependency> |
50 | 87 | <groupId>org.springframework</groupId> |
51 | 88 | <artifactId>spring-webmvc</artifactId> |
|
56 | 93 | <artifactId>javax.persistence</artifactId> |
57 | 94 | <version>${javax.persistence.version}</version> |
58 | 95 | </dependency> |
59 | | - <dependency> |
60 | | - <groupId>org.springframework.data</groupId> |
61 | | - <artifactId>spring-data-jpa</artifactId> |
62 | | - </dependency> |
63 | 96 | <dependency> |
64 | 97 | <groupId>org.awaitility</groupId> |
65 | 98 | <artifactId>awaitility</artifactId> |
66 | 99 | <version>${awaitility.version}</version> |
67 | 100 | <scope>test</scope> |
68 | 101 | </dependency> |
69 | 102 | <dependency> |
70 | | - <groupId>javax.servlet</groupId> |
71 | | - <artifactId>javax.servlet-api</artifactId> |
72 | | - <version>${javax.servlet-api.version}</version> |
| 103 | + <groupId>jakarta.servlet</groupId> |
| 104 | + <artifactId>jakarta.servlet-api</artifactId> |
| 105 | + <version>6.0.0</version> |
| 106 | + </dependency> |
| 107 | + <!-- test scoped --> |
| 108 | + <dependency> |
| 109 | + <groupId>org.springframework.boot</groupId> |
| 110 | + <artifactId>spring-boot-starter-test</artifactId> |
| 111 | + <scope>test</scope> |
| 112 | + <version>3.2.2</version> |
| 113 | + <exclusions> |
| 114 | + <exclusion> |
| 115 | + <groupId>org.springframework.boot</groupId> |
| 116 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 117 | + </exclusion> |
| 118 | + </exclusions> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.junit.jupiter</groupId> |
| 122 | + <artifactId>junit-jupiter</artifactId> |
| 123 | + <version>5.9.2</version> |
| 124 | + <scope>test</scope> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>org.junit.vintage</groupId> |
| 128 | + <artifactId>junit-vintage-engine</artifactId> |
| 129 | + <version>5.9.2</version> |
| 130 | + <scope>test</scope> |
73 | 131 | </dependency> |
74 | 132 | </dependencies> |
75 | 133 |
|
|
0 commit comments