|
12 | 12 | <packaging>jar</packaging> |
13 | 13 | <name>${project.groupId}:${project.artifactId}</name> |
14 | 14 |
|
| 15 | + <properties> |
| 16 | + <!-- THOSE ARE ONLY FOR TESTING --> |
| 17 | + <springboot.version>2.5.4</springboot.version> |
| 18 | + </properties> |
| 19 | + |
15 | 20 |
|
16 | 21 | <dependencies> |
17 | 22 | <dependency> |
|
54 | 59 | <artifactId>junit-jupiter-params</artifactId> |
55 | 60 | </dependency> |
56 | 61 |
|
| 62 | + |
| 63 | + <!-- SPRING --> |
57 | 64 | <dependency> |
58 | 65 | <groupId>org.springframework.boot</groupId> |
59 | 66 | <artifactId>spring-boot-starter-web</artifactId> |
| 67 | + <version>${springboot.version}</version> |
| 68 | + <scope>test</scope> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.springframework.boot</groupId> |
| 72 | + <artifactId>spring-boot-starter-data-mongodb</artifactId> |
| 73 | + <version>${springboot.version}</version> |
60 | 74 | <scope>test</scope> |
61 | 75 | </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework.boot</groupId> |
| 78 | + <artifactId>spring-boot-starter-data-redis</artifactId> |
| 79 | + <version>${springboot.version}</version> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + <!-- <dependency>--> |
| 83 | + <!-- <groupId>org.springframework.data</groupId>--> |
| 84 | + <!-- <artifactId>spring-data-redis</artifactId>--> |
| 85 | + <!-- <version>${springboot.version}</version>--> |
| 86 | + <!-- <scope>test</scope>--> |
| 87 | + <!-- </dependency>--> |
| 88 | + |
| 89 | + |
| 90 | + |
62 | 91 | <dependency> |
63 | 92 | <groupId>org.mockito</groupId> |
64 | 93 | <artifactId>mockito-core</artifactId> |
|
164 | 193 | <artifactId>mongodb-driver-sync</artifactId> |
165 | 194 | <scope>test</scope> |
166 | 195 | </dependency> |
167 | | - <dependency> |
168 | | - <groupId>org.springframework.boot</groupId> |
169 | | - <artifactId>spring-boot-starter-data-mongodb</artifactId> |
170 | | - <scope>test</scope> |
171 | | - </dependency> |
172 | | - <dependency> |
173 | | - <groupId>org.springframework.boot</groupId> |
174 | | - <artifactId>spring-boot-starter-data-redis</artifactId> |
175 | | - <scope>test</scope> |
176 | | - </dependency> |
177 | | - <dependency> |
178 | | - <groupId>org.springframework.data</groupId> |
179 | | - <artifactId>spring-data-redis</artifactId> |
180 | | - <scope>test</scope> |
181 | | - </dependency> |
| 196 | + |
182 | 197 | <dependency> |
183 | 198 | <groupId>org.testcontainers</groupId> |
184 | 199 | <artifactId>testcontainers</artifactId> |
|
0 commit comments