|
99 | 99 | </distributionManagement> |
100 | 100 |
|
101 | 101 | <properties> |
102 | | - <clirr.comparisonVersion>1.3.2</clirr.comparisonVersion> |
| 102 | + <clirr.comparisonVersion>2.1.0</clirr.comparisonVersion> |
103 | 103 | <findbugs.onlyAnalyze>org.mybatis.spring.*,org.mybatis.spring.mapper.*,org.mybatis.spring.support.*,org.mybatis.spring.transaction.*</findbugs.onlyAnalyze> |
104 | 104 | <gcu.product>Spring</gcu.product> |
105 | 105 | <osgi.import>org.springframework.batch.*;resolution:=optional,*</osgi.import> |
|
116 | 116 |
|
117 | 117 | <junit.version>5.9.2</junit.version> |
118 | 118 |
|
119 | | - <!-- Keep this setting until mybatis-parent 37 official released --> |
120 | | - <maven.compiler.parameters>true</maven.compiler.parameters> |
121 | | - |
122 | 119 | <!-- Reproducible Builds --> |
123 | 120 | <project.build.outputTimestamp>1670546764</project.build.outputTimestamp> |
| 121 | + |
| 122 | + <!-- TODO: Remove this after mybatis-parent 38 --> |
| 123 | + <jacoco.plugin>0.8.9</jacoco.plugin> |
| 124 | + |
| 125 | + <!-- Set byte buddy to experimental --> |
| 126 | + <net.bytebuddy.experimental>true</net.bytebuddy.experimental> |
124 | 127 | </properties> |
125 | 128 |
|
126 | 129 | <dependencies> |
|
233 | 236 | <dependency> |
234 | 237 | <groupId>org.mockito</groupId> |
235 | 238 | <artifactId>mockito-core</artifactId> |
236 | | - <version>4.9.0</version> |
| 239 | + <version>5.2.0</version> |
237 | 240 | <scope>test</scope> |
238 | 241 | </dependency> |
239 | 242 |
|
|
314 | 317 | <scope>test</scope> |
315 | 318 | </dependency> |
316 | 319 |
|
| 320 | + <dependency> |
| 321 | + <groupId>net.bytebuddy</groupId> |
| 322 | + <artifactId>byte-buddy</artifactId> |
| 323 | + <version>1.14.4</version> |
| 324 | + <scope>test</scope> |
| 325 | + </dependency> |
| 326 | + <dependency> |
| 327 | + <groupId>net.bytebuddy</groupId> |
| 328 | + <artifactId>byte-buddy-agent</artifactId> |
| 329 | + <version>1.14.4</version> |
| 330 | + <scope>test</scope> |
| 331 | + </dependency> |
317 | 332 | </dependencies> |
318 | 333 |
|
319 | 334 | <build> |
|
0 commit comments