|
23 | 23 | <groupId>org.mybatis</groupId> |
24 | 24 | <artifactId>mybatis-parent</artifactId> |
25 | 25 | <version>28</version> |
26 | | - <relativePath /> |
| 26 | + <relativePath/> |
27 | 27 | </parent> |
28 | 28 |
|
29 | 29 | <artifactId>mybatis-spring</artifactId> |
30 | | - <version>1.3.2-SNAPSHOT</version> |
| 30 | + <version>2.0.0-SNAPSHOT</version> |
31 | 31 | <packaging>jar</packaging> |
32 | 32 |
|
33 | 33 | <name>mybatis-spring</name> |
34 | 34 | <description>An easy-to-use Spring bridge for MyBatis sql mapping framework.</description> |
35 | 35 | <url>http://www.mybatis.org/spring/</url> |
36 | 36 |
|
37 | 37 | <contributors> |
38 | | - |
39 | 38 | <contributor> |
40 | 39 | <name>Alex Rykov</name> |
41 | 40 | |
42 | 41 | </contributor> |
43 | | - |
| 42 | + |
44 | 43 | <contributor> |
45 | 44 | <name>Andrius Juozapaitis</name> |
46 | 45 | |
|
103 | 102 | <clirr.comparisonVersion>1.2.2</clirr.comparisonVersion> |
104 | 103 | <findbugs.onlyAnalyze>org.mybatis.spring.*,org.mybatis.spring.mapper.*,org.mybatis.spring.support.*,org.mybatis.spring.transaction.*</findbugs.onlyAnalyze> |
105 | 104 | <gcu.product>Spring</gcu.product> |
| 105 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 106 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 107 | + <maven.compiler.testSource>1.8</maven.compiler.testSource> |
| 108 | + <maven.compiler.testTarget>1.8</maven.compiler.testTarget> |
106 | 109 | <osgi.import>org.springframework.batch.*;resolution:=optional,*</osgi.import> |
107 | 110 | <osgi.dynamicImport>*</osgi.dynamicImport> |
108 | | - <spring.version>4.3.8.RELEASE</spring.version> |
| 111 | + |
| 112 | + <spring.version>5.0.0.M5</spring.version> |
| 113 | + <spring-batch.version>4.0.0.M1</spring-batch.version> |
| 114 | + <junit-platform.version>1.0.0-M4</junit-platform.version> |
| 115 | + <junit.version>5.0.0-M4</junit.version> |
| 116 | + |
| 117 | + <!-- Override: Animal Sniffer Signature --> |
| 118 | + <signature.group>org.codehaus.mojo.signature</signature.group> |
| 119 | + <signature.artifact>java18</signature.artifact> |
| 120 | + <signature.version>1.0</signature.version> |
109 | 121 | </properties> |
110 | 122 |
|
111 | 123 | <dependencies> |
|
133 | 145 | <dependency> |
134 | 146 | <groupId>org.springframework.batch</groupId> |
135 | 147 | <artifactId>spring-batch-infrastructure</artifactId> |
136 | | - <version>3.0.7.RELEASE</version> |
| 148 | + <version>4.0.0.M1</version> |
137 | 149 | <scope>provided</scope> |
138 | 150 | </dependency> |
139 | 151 |
|
|
143 | 155 | <dependency> |
144 | 156 | <groupId>com.atomikos</groupId> |
145 | 157 | <artifactId>transactions-jdbc</artifactId> |
146 | | - <version>4.0.3</version> |
| 158 | + <version>4.0.4</version> |
147 | 159 | <scope>test</scope> |
148 | 160 | </dependency> |
149 | 161 |
|
150 | 162 | <dependency> |
151 | 163 | <groupId>org.apache.derby</groupId> |
152 | 164 | <artifactId>derby</artifactId> |
153 | | - <version>10.12.1.1</version> |
| 165 | + <version>10.13.1.1</version> |
| 166 | + <scope>test</scope> |
| 167 | + </dependency> |
| 168 | + |
| 169 | + <dependency> |
| 170 | + <groupId>org.junit.jupiter</groupId> |
| 171 | + <artifactId>junit-jupiter-api</artifactId> |
| 172 | + <version>5.0.0-M4</version> |
154 | 173 | <scope>test</scope> |
155 | 174 | </dependency> |
156 | 175 |
|
157 | 176 | <dependency> |
158 | | - <groupId>junit</groupId> |
159 | | - <artifactId>junit</artifactId> |
160 | | - <version>4.12</version> |
| 177 | + <groupId>org.junit.jupiter</groupId> |
| 178 | + <artifactId>junit-jupiter-engine</artifactId> |
| 179 | + <version>${junit.version}</version> |
161 | 180 | <scope>test</scope> |
162 | 181 | </dependency> |
163 | 182 |
|
| 183 | + <dependency> |
| 184 | + <groupId>org.junit.platform</groupId> |
| 185 | + <artifactId>junit-platform-runner</artifactId> |
| 186 | + <version>${junit-platform.version}</version> |
| 187 | + </dependency> |
| 188 | + |
164 | 189 | <dependency> |
165 | 190 | <groupId>org.jboss.byteman</groupId> |
166 | 191 | <artifactId>byteman-bmunit</artifactId> |
|
196 | 221 | <scope>test</scope> |
197 | 222 | </dependency> |
198 | 223 |
|
| 224 | + <dependency> |
| 225 | + <groupId>org.mockito</groupId> |
| 226 | + <artifactId>mockito-core</artifactId> |
| 227 | + <version>2.7.22</version> |
| 228 | + </dependency> |
| 229 | + |
| 230 | + <dependency> |
| 231 | + <groupId>org.assertj</groupId> |
| 232 | + <artifactId>assertj-core</artifactId> |
| 233 | + <version>3.6.2</version> |
| 234 | + </dependency> |
| 235 | + |
199 | 236 | <!-- Using version 1.0.1, versions higher require only jdk7 --> |
200 | 237 | <dependency> |
201 | 238 | <groupId>com.mockrunner</groupId> |
202 | 239 | <artifactId>mockrunner-core</artifactId> |
203 | | - <version>1.0.1</version> |
| 240 | + <version>1.1.2</version> |
204 | 241 | <scope>test</scope> |
205 | 242 | <exclusions> |
206 | 243 | <exclusion> |
207 | | - <groupId>commons-logging</groupId> |
208 | | - <artifactId>commons-logging</artifactId> |
| 244 | + <groupId>commons-logging</groupId> |
| 245 | + <artifactId>commons-logging</artifactId> |
209 | 246 | </exclusion> |
210 | 247 | <exclusion> |
211 | | - <groupId>com.kirkk</groupId> |
212 | | - <artifactId>jaranalyzer</artifactId> |
| 248 | + <groupId>com.kirkk</groupId> |
| 249 | + <artifactId>jaranalyzer</artifactId> |
213 | 250 | </exclusion> |
214 | 251 | <exclusion> |
215 | 252 | <groupId>jdom</groupId> |
|
224 | 261 | <dependency> |
225 | 262 | <groupId>com.mockrunner</groupId> |
226 | 263 | <artifactId>mockrunner-ejb</artifactId> |
227 | | - <version>1.0.1</version> |
| 264 | + <version>1.1.2</version> |
228 | 265 | <scope>test</scope> |
229 | 266 | <exclusions> |
230 | 267 | <exclusion> |
|
240 | 277 | <dependency> |
241 | 278 | <groupId>com.mockrunner</groupId> |
242 | 279 | <artifactId>mockrunner-jdbc</artifactId> |
243 | | - <version>1.0.1</version> |
| 280 | + <version>1.1.2</version> |
244 | 281 | <scope>test</scope> |
245 | 282 | </dependency> |
246 | 283 |
|
247 | 284 | <dependency> |
248 | 285 | <groupId>javax.transaction</groupId> |
249 | | - <artifactId>transaction-api</artifactId> |
250 | | - <version>1.1</version> |
| 286 | + <artifactId>javax.transaction-api</artifactId> |
| 287 | + <version>1.2</version> |
251 | 288 | <scope>test</scope> |
252 | 289 | </dependency> |
253 | 290 | <dependency> |
254 | 291 | <groupId>javax.servlet</groupId> |
255 | 292 | <artifactId>javax.servlet-api</artifactId> |
256 | | - <version>3.0.1</version> |
| 293 | + <version>3.1.0</version> |
257 | 294 | <scope>test</scope> |
258 | 295 | </dependency> |
259 | 296 |
|
260 | 297 | </dependencies> |
261 | 298 |
|
| 299 | + <repositories> |
| 300 | + <repository> |
| 301 | + <id>spring-milestones</id> |
| 302 | + <name>Spring Milestones</name> |
| 303 | + <url>https://repo.spring.io/libs-milestone</url> |
| 304 | + <snapshots> |
| 305 | + <enabled>false</enabled> |
| 306 | + </snapshots> |
| 307 | + </repository> |
| 308 | + </repositories> |
| 309 | + |
262 | 310 | <build> |
263 | 311 | <plugins> |
264 | | - |
265 | 312 | <plugin> |
266 | 313 | <groupId>org.apache.maven.plugins</groupId> |
267 | 314 | <artifactId>maven-surefire-plugin</artifactId> |
|
275 | 322 | <name>com.atomikos.icatch.log_base_dir</name> |
276 | 323 | <value>${project.build.directory}</value> |
277 | 324 | </property> |
278 | | - </systemProperties> |
| 325 | + </systemProperties> |
279 | 326 | </configuration> |
| 327 | + <dependencies> |
| 328 | + <dependency> |
| 329 | + <groupId>org.junit.platform</groupId> |
| 330 | + <artifactId>junit-platform-surefire-provider</artifactId> |
| 331 | + <version>${junit-platform.version}</version> |
| 332 | + </dependency> |
| 333 | + <dependency> |
| 334 | + <groupId>org.junit.jupiter</groupId> |
| 335 | + <artifactId>junit-jupiter-engine</artifactId> |
| 336 | + <version>${junit.version}</version> |
| 337 | + </dependency> |
| 338 | + </dependencies> |
280 | 339 | </plugin> |
281 | | - |
282 | 340 | <plugin> |
283 | 341 | <groupId>org.apache.maven.plugins</groupId> |
284 | 342 | <artifactId>maven-site-plugin</artifactId> |
|
0 commit comments