|
40 | 40 | <spring.framework.version>6.0.13</spring.framework.version> |
41 | 41 | </properties> |
42 | 42 |
|
43 | | - <profiles> |
44 | | - <profile> |
45 | | - <id>spring</id> |
46 | | - <repositories> |
47 | | - <repository> |
48 | | - <id>spring-snapshots</id> |
49 | | - <name>Spring Snapshots</name> |
50 | | - <url>https://repo.spring.io/snapshot</url> |
51 | | - <snapshots> |
52 | | - <enabled>true</enabled> |
53 | | - </snapshots> |
54 | | - </repository> |
55 | | - <repository> |
56 | | - <id>spring-milestones</id> |
57 | | - <name>Spring Milestones</name> |
58 | | - <url>https://repo.spring.io/milestone</url> |
59 | | - <snapshots> |
60 | | - <enabled>false</enabled> |
61 | | - </snapshots> |
62 | | - </repository> |
63 | | - <repository> |
64 | | - <id>spring-releases</id> |
65 | | - <name>Spring Releases</name> |
66 | | - <url>https://repo.spring.io/release</url> |
67 | | - <snapshots> |
68 | | - <enabled>false</enabled> |
69 | | - </snapshots> |
70 | | - </repository> |
71 | | - </repositories> |
72 | | - <pluginRepositories> |
73 | | - <pluginRepository> |
74 | | - <id>spring-snapshots</id> |
75 | | - <name>Spring Snapshots</name> |
76 | | - <url>https://repo.spring.io/snapshot</url> |
77 | | - <snapshots> |
78 | | - <enabled>true</enabled> |
79 | | - </snapshots> |
80 | | - </pluginRepository> |
81 | | - <pluginRepository> |
82 | | - <id>spring-milestones</id> |
83 | | - <name>Spring Milestones</name> |
84 | | - <url>https://repo.spring.io/milestone</url> |
85 | | - <snapshots> |
86 | | - <enabled>false</enabled> |
87 | | - </snapshots> |
88 | | - </pluginRepository> |
89 | | - </pluginRepositories> |
90 | | - </profile> |
91 | | - <profile> |
92 | | - <id>fast</id> |
93 | | - <properties> |
94 | | - <maven.test.skip>true</maven.test.skip> |
95 | | - <maven.javadoc.skip>true</maven.javadoc.skip> |
96 | | - </properties> |
97 | | - </profile> |
98 | | - </profiles> |
99 | | - |
100 | 43 | <scm> |
101 | 44 | <url>https://github.com/spring-projects/spring-retry</url> |
102 | 45 | <connection>scm:git:git://github.com/spring-projects/spring-retry.git</connection> |
|
112 | 55 | </developer> |
113 | 56 | </developers> |
114 | 57 |
|
115 | | - <dependencyManagement> |
116 | | - <dependencies> |
117 | | - <dependency> |
118 | | - <groupId>org.springframework</groupId> |
119 | | - <artifactId>spring-framework-bom</artifactId> |
120 | | - <version>${spring.framework.version}</version> |
121 | | - <type>pom</type> |
122 | | - <scope>import</scope> |
123 | | - </dependency> |
124 | | - <dependency> |
125 | | - <groupId>org.junit</groupId> |
126 | | - <artifactId>junit-bom</artifactId> |
127 | | - <version>${junit-jupiter.version}</version> |
128 | | - <type>pom</type> |
129 | | - <scope>import</scope> |
130 | | - </dependency> |
131 | | - </dependencies> |
132 | | - </dependencyManagement> |
133 | | - |
134 | 58 | <dependencies> |
135 | 59 | <dependency> |
136 | 60 | <groupId>org.springframework</groupId> |
|
143 | 67 | <optional>true</optional> |
144 | 68 | </dependency> |
145 | 69 |
|
| 70 | + <dependency> |
| 71 | + <groupId>org.springframework</groupId> |
| 72 | + <artifactId>spring-test</artifactId> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.springframework</groupId> |
| 77 | + <artifactId>spring-tx</artifactId> |
| 78 | + <scope>test</scope> |
| 79 | + </dependency> |
146 | 80 | <dependency> |
147 | 81 | <groupId>org.junit.jupiter</groupId> |
148 | 82 | <artifactId>junit-jupiter-api</artifactId> |
|
163 | 97 | <artifactId>junit-platform-launcher</artifactId> |
164 | 98 | <scope>test</scope> |
165 | 99 | </dependency> |
166 | | - <dependency> |
167 | | - <groupId>org.assertj</groupId> |
168 | | - <artifactId>assertj-core</artifactId> |
169 | | - <version>${assertj.version}</version> |
170 | | - <scope>test</scope> |
171 | | - </dependency> |
172 | 100 | <dependency> |
173 | 101 | <groupId>org.apache.logging.log4j</groupId> |
174 | 102 | <artifactId>log4j-core</artifactId> |
|
188 | 116 | <scope>test</scope> |
189 | 117 | </dependency> |
190 | 118 | <dependency> |
191 | | - <groupId>org.mockito</groupId> |
192 | | - <artifactId>mockito-core</artifactId> |
193 | | - <version>${mockito.version}</version> |
194 | | - <scope>test</scope> |
195 | | - </dependency> |
196 | | - <dependency> |
197 | | - <groupId>org.springframework</groupId> |
198 | | - <artifactId>spring-test</artifactId> |
| 119 | + <groupId>org.assertj</groupId> |
| 120 | + <artifactId>assertj-core</artifactId> |
| 121 | + <version>${assertj.version}</version> |
199 | 122 | <scope>test</scope> |
200 | 123 | </dependency> |
201 | 124 | <dependency> |
202 | | - <groupId>org.springframework</groupId> |
203 | | - <artifactId>spring-tx</artifactId> |
| 125 | + <groupId>org.mockito</groupId> |
| 126 | + <artifactId>mockito-core</artifactId> |
| 127 | + <version>${mockito.version}</version> |
204 | 128 | <scope>test</scope> |
205 | 129 | </dependency> |
206 | 130 | </dependencies> |
207 | 131 |
|
| 132 | + <dependencyManagement> |
| 133 | + <dependencies> |
| 134 | + <dependency> |
| 135 | + <groupId>org.springframework</groupId> |
| 136 | + <artifactId>spring-framework-bom</artifactId> |
| 137 | + <version>${spring.framework.version}</version> |
| 138 | + <type>pom</type> |
| 139 | + <scope>import</scope> |
| 140 | + </dependency> |
| 141 | + <dependency> |
| 142 | + <groupId>org.junit</groupId> |
| 143 | + <artifactId>junit-bom</artifactId> |
| 144 | + <version>${junit-jupiter.version}</version> |
| 145 | + <type>pom</type> |
| 146 | + <scope>import</scope> |
| 147 | + </dependency> |
| 148 | + </dependencies> |
| 149 | + </dependencyManagement> |
| 150 | + |
208 | 151 | <build> |
209 | 152 | <resources> |
210 | 153 | <resource> |
|
307 | 250 | </plugins> |
308 | 251 | </build> |
309 | 252 |
|
| 253 | + <profiles> |
| 254 | + <profile> |
| 255 | + <id>spring</id> |
| 256 | + <repositories> |
| 257 | + <repository> |
| 258 | + <id>spring-snapshots</id> |
| 259 | + <name>Spring Snapshots</name> |
| 260 | + <url>https://repo.spring.io/snapshot</url> |
| 261 | + <snapshots> |
| 262 | + <enabled>true</enabled> |
| 263 | + </snapshots> |
| 264 | + </repository> |
| 265 | + <repository> |
| 266 | + <id>spring-milestones</id> |
| 267 | + <name>Spring Milestones</name> |
| 268 | + <url>https://repo.spring.io/milestone</url> |
| 269 | + <snapshots> |
| 270 | + <enabled>false</enabled> |
| 271 | + </snapshots> |
| 272 | + </repository> |
| 273 | + <repository> |
| 274 | + <id>spring-releases</id> |
| 275 | + <name>Spring Releases</name> |
| 276 | + <url>https://repo.spring.io/release</url> |
| 277 | + <snapshots> |
| 278 | + <enabled>false</enabled> |
| 279 | + </snapshots> |
| 280 | + </repository> |
| 281 | + </repositories> |
| 282 | + <pluginRepositories> |
| 283 | + <pluginRepository> |
| 284 | + <id>spring-snapshots</id> |
| 285 | + <name>Spring Snapshots</name> |
| 286 | + <url>https://repo.spring.io/snapshot</url> |
| 287 | + <snapshots> |
| 288 | + <enabled>true</enabled> |
| 289 | + </snapshots> |
| 290 | + </pluginRepository> |
| 291 | + <pluginRepository> |
| 292 | + <id>spring-milestones</id> |
| 293 | + <name>Spring Milestones</name> |
| 294 | + <url>https://repo.spring.io/milestone</url> |
| 295 | + <snapshots> |
| 296 | + <enabled>false</enabled> |
| 297 | + </snapshots> |
| 298 | + </pluginRepository> |
| 299 | + </pluginRepositories> |
| 300 | + </profile> |
| 301 | + <profile> |
| 302 | + <id>fast</id> |
| 303 | + <properties> |
| 304 | + <maven.test.skip>true</maven.test.skip> |
| 305 | + <maven.javadoc.skip>true</maven.javadoc.skip> |
| 306 | + </properties> |
| 307 | + </profile> |
| 308 | + </profiles> |
| 309 | + |
310 | 310 | </project> |
0 commit comments