|
28 | 28 |
|
29 | 29 | <groupId>org.mybatis</groupId> |
30 | 30 | <artifactId>mybatis</artifactId> |
31 | | - <version>3.5.15-SNAPSHOT</version> |
| 31 | + <version>3.5.16-SNAPSHOT</version> |
32 | 32 |
|
33 | 33 | <name>mybatis</name> |
34 | | - <description> |
35 | | - The MyBatis SQL mapper framework makes it easier to use a relational database with object-oriented |
| 34 | + <description>The MyBatis SQL mapper framework makes it easier to use a relational database with object-oriented |
36 | 35 | applications. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or |
37 | 36 | annotations. Simplicity is the biggest advantage of the MyBatis data mapper over object relational mapping |
38 | | - tools. |
39 | | - </description> |
| 37 | + tools.</description> |
40 | 38 | <url>https://www.mybatis.org/mybatis-3</url> |
41 | 39 |
|
42 | 40 | <inceptionYear>2009</inceptionYear> |
|
109 | 107 | </contributors> |
110 | 108 |
|
111 | 109 | <scm> |
112 | | - <url>https://github.com/mybatis/mybatis-3</url> |
113 | 110 | <connection>scm:git:ssh://git@github.com/mybatis/mybatis-3.git</connection> |
114 | 111 | <developerConnection>scm:git:ssh://git@github.com/mybatis/mybatis-3.git</developerConnection> |
115 | | - <tag>HEAD</tag> |
| 112 | + <tag>mybatis-3.5.15</tag> |
| 113 | + <url>https://github.com/mybatis/mybatis-3</url> |
116 | 114 | </scm> |
117 | 115 | <issueManagement> |
118 | 116 | <system>GitHub Issue Management</system> |
|
136 | 134 | <byte-buddy.version>1.14.10</byte-buddy.version> |
137 | 135 | <derby.version>10.17.1.0</derby.version> |
138 | 136 | <log4j.version>2.22.0</log4j.version> |
| 137 | + <mockito.version>5.8.0</mockito.version> |
139 | 138 | <mssql-jdbc.version>12.4.2.jre11</mssql-jdbc.version> |
| 139 | + <testcontainers.version>1.19.3</testcontainers.version> |
140 | 140 |
|
141 | 141 | <!-- Add slow test groups here and annotate classes similar to @Tag('groupName'). --> |
142 | 142 | <!-- Excluded groups are ran on github ci, to force here, pass -d"excludedGroups=" --> |
|
157 | 157 | <argLine>-Xmx2048m</argLine> |
158 | 158 |
|
159 | 159 | <!-- Reproducible Builds --> |
160 | | - <project.build.outputTimestamp>1698763635</project.build.outputTimestamp> |
| 160 | + <project.build.outputTimestamp>1702533513</project.build.outputTimestamp> |
161 | 161 | </properties> |
162 | 162 |
|
163 | 163 | <dependencies> |
|
228 | 228 | <dependency> |
229 | 229 | <groupId>org.mockito</groupId> |
230 | 230 | <artifactId>mockito-core</artifactId> |
231 | | - <version>5.8.0</version> |
| 231 | + <version>${mockito.version}</version> |
232 | 232 | <scope>test</scope> |
233 | 233 | </dependency> |
234 | 234 | <dependency> |
235 | 235 | <groupId>org.mockito</groupId> |
236 | 236 | <artifactId>mockito-subclass</artifactId> |
237 | | - <version>5.8.0</version> |
| 237 | + <version>${mockito.version}</version> |
238 | 238 | <scope>test</scope> |
239 | 239 | </dependency> |
240 | 240 | <dependency> |
241 | 241 | <groupId>org.mockito</groupId> |
242 | 242 | <artifactId>mockito-junit-jupiter</artifactId> |
243 | | - <version>5.8.0</version> |
| 243 | + <version>${mockito.version}</version> |
244 | 244 | <scope>test</scope> |
245 | 245 | </dependency> |
246 | 246 | <dependency> |
|
289 | 289 | <dependency> |
290 | 290 | <groupId>org.testcontainers</groupId> |
291 | 291 | <artifactId>junit-jupiter</artifactId> |
292 | | - <version>1.19.3</version> |
| 292 | + <version>${testcontainers.version}</version> |
293 | 293 | <scope>test</scope> |
294 | 294 | </dependency> |
295 | 295 | <dependency> |
296 | 296 | <groupId>org.testcontainers</groupId> |
297 | 297 | <artifactId>postgresql</artifactId> |
298 | | - <version>1.19.3</version> |
| 298 | + <version>${testcontainers.version}</version> |
299 | 299 | <scope>test</scope> |
300 | 300 | </dependency> |
301 | 301 | <dependency> |
302 | 302 | <groupId>org.testcontainers</groupId> |
303 | 303 | <artifactId>mysql</artifactId> |
304 | | - <version>1.19.3</version> |
| 304 | + <version>${testcontainers.version}</version> |
305 | 305 | <scope>test</scope> |
306 | 306 | </dependency> |
307 | 307 | <!-- For javadoc link --> |
|
371 | 371 | </systemPropertyVariables> |
372 | 372 | </configuration> |
373 | 373 | </plugin> |
| 374 | + <!-- Do not run pdf plugin as not compliant with site 2.0 |
374 | 375 | <plugin> |
375 | 376 | <groupId>org.apache.maven.plugins</groupId> |
376 | 377 | <artifactId>maven-pdf-plugin</artifactId> |
377 | 378 | </plugin> |
| 379 | + --> |
378 | 380 | <plugin> |
379 | 381 | <groupId>org.apache.maven.plugins</groupId> |
380 | 382 | <artifactId>maven-shade-plugin</artifactId> |
381 | 383 | <executions> |
382 | 384 | <execution> |
383 | | - <phase>package</phase> |
384 | 385 | <goals> |
385 | 386 | <goal>shade</goal> |
386 | 387 | </goals> |
| 388 | + <phase>package</phase> |
387 | 389 | <configuration> |
388 | 390 | <createDependencyReducedPom>false</createDependencyReducedPom> |
389 | 391 | <artifactSet> |
|
425 | 427 | <groupId>org.apache.maven.plugins</groupId> |
426 | 428 | <artifactId>maven-site-plugin</artifactId> |
427 | 429 | <configuration> |
428 | | - <locales>en,es,ja,fr,zh_CN,ko</locales> |
| 430 | + <locales>default,es,ja,fr,zh_CN,ko</locales> |
| 431 | + <topSiteURL>${project.distributionManagement.site.url}</topSiteURL> |
429 | 432 | </configuration> |
430 | 433 | </plugin> |
431 | 434 | <plugin> |
|
448 | 451 | <jdk>(,16)</jdk> |
449 | 452 | </activation> |
450 | 453 | <properties> |
451 | | - <derby.version>10.15.2.0</derby.version> |
452 | | - <mssql-jdbc.version>12.4.2.jre8</mssql-jdbc.version> |
| 454 | + <derby.version>10.15.2.0</derby.version> |
| 455 | + <mssql-jdbc.version>12.4.2.jre8</mssql-jdbc.version> |
453 | 456 | </properties> |
454 | 457 | <build> |
455 | 458 | <pluginManagement> |
|
494 | 497 | <jdk>[17,)</jdk> |
495 | 498 | </activation> |
496 | 499 | <properties> |
497 | | - <derby.version>10.16.1.1</derby.version> |
| 500 | + <derby.version>10.16.1.1</derby.version> |
498 | 501 | </properties> |
499 | 502 | </profile> |
500 | 503 | <profile> |
|
503 | 506 | <jdk>[19,)</jdk> |
504 | 507 | </activation> |
505 | 508 | <properties> |
506 | | - <derby.version>10.17.1.0</derby.version> |
| 509 | + <derby.version>10.17.1.0</derby.version> |
507 | 510 | </properties> |
508 | 511 | </profile> |
509 | 512 | </profiles> |
|
0 commit comments