|
23 | 23 | <groupId>org.mybatis</groupId> |
24 | 24 | <artifactId>mybatis-parent</artifactId> |
25 | 25 | <version>40</version> |
26 | | - <relativePath /> |
| 26 | + <relativePath/> |
27 | 27 | </parent> |
28 | 28 |
|
29 | 29 | <artifactId>mybatis-spring</artifactId> |
|
77 | 77 | </contributors> |
78 | 78 |
|
79 | 79 | <scm> |
80 | | - <url>http://github.com/mybatis/spring</url> |
81 | 80 | <connection>scm:git:ssh://git@github.com/mybatis/spring.git</connection> |
82 | 81 | <developerConnection>scm:git:ssh://git@github.com/mybatis/spring.git</developerConnection> |
83 | 82 | <tag>HEAD</tag> |
| 83 | + <url>http://github.com/mybatis/spring</url> |
84 | 84 | </scm> |
85 | 85 | <issueManagement> |
86 | 86 | <system>GitHub Issue Management</system> |
|
212 | 212 | <version>${spring-batch.version}</version> |
213 | 213 | <scope>test</scope> |
214 | 214 | <exclusions> |
215 | | - <exclusion> |
216 | | - <groupId>junit</groupId> |
217 | | - <artifactId>junit</artifactId> |
218 | | - </exclusion> |
| 215 | + <exclusion> |
| 216 | + <groupId>junit</groupId> |
| 217 | + <artifactId>junit</artifactId> |
| 218 | + </exclusion> |
219 | 219 | </exclusions> |
220 | 220 | </dependency> |
221 | 221 |
|
|
331 | 331 | </dependency> |
332 | 332 | </dependencies> |
333 | 333 |
|
| 334 | + <repositories> |
| 335 | + <repository> |
| 336 | + <id>sonatype-oss-snapshots</id> |
| 337 | + <name>Sonatype OSS Snapshots Repository</name> |
| 338 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 339 | + </repository> |
| 340 | + <repository> |
| 341 | + <releases> |
| 342 | + <enabled>false</enabled> |
| 343 | + </releases> |
| 344 | + <id>spring-snapshot</id> |
| 345 | + <name>Spring Snapshots</name> |
| 346 | + <url>https://repo.spring.io/snapshot</url> |
| 347 | + </repository> |
| 348 | + <repository> |
| 349 | + <snapshots> |
| 350 | + <enabled>false</enabled> |
| 351 | + </snapshots> |
| 352 | + <id>spring-milestone</id> |
| 353 | + <name>Spring Milestone</name> |
| 354 | + <url>https://repo.spring.io/milestone</url> |
| 355 | + </repository> |
| 356 | + </repositories> |
| 357 | + |
| 358 | + <pluginRepositories> |
| 359 | + <pluginRepository> |
| 360 | + <releases> |
| 361 | + <enabled>false</enabled> |
| 362 | + </releases> |
| 363 | + <id>spring-snapshot</id> |
| 364 | + <name>Spring Snapshots</name> |
| 365 | + <url>https://repo.spring.io/snapshot</url> |
| 366 | + </pluginRepository> |
| 367 | + <pluginRepository> |
| 368 | + <snapshots> |
| 369 | + <enabled>false</enabled> |
| 370 | + </snapshots> |
| 371 | + <id>spring-milestone</id> |
| 372 | + <name>Spring Milestone</name> |
| 373 | + <url>https://repo.spring.io/milestone</url> |
| 374 | + </pluginRepository> |
| 375 | + </pluginRepositories> |
| 376 | + |
334 | 377 | <build> |
| 378 | + |
| 379 | + <resources> |
| 380 | + <resource> |
| 381 | + <targetPath>META-INF</targetPath> |
| 382 | + <directory>${project.basedir}</directory> |
| 383 | + <includes> |
| 384 | + <include>LICENSE</include> |
| 385 | + <include>NOTICE</include> |
| 386 | + </includes> |
| 387 | + </resource> |
| 388 | + <resource> |
| 389 | + <directory>${project.basedir}/src/main/resources</directory> |
| 390 | + </resource> |
| 391 | + </resources> |
| 392 | + <testResources> |
| 393 | + <testResource> |
| 394 | + <directory>${project.build.testSourceDirectory}</directory> |
| 395 | + <excludes> |
| 396 | + <exclude>**/*.java</exclude> |
| 397 | + </excludes> |
| 398 | + </testResource> |
| 399 | + </testResources> |
335 | 400 | <plugins> |
336 | 401 | <plugin> |
337 | 402 | <groupId>org.apache.maven.plugins</groupId> |
|
356 | 421 | <!-- prepare site content by filtering ${project.*} values--> |
357 | 422 | <execution> |
358 | 423 | <id>filter-site</id> |
359 | | - <phase>pre-site</phase> |
360 | 424 | <goals> |
361 | 425 | <goal>copy-resources</goal> |
362 | 426 | </goals> |
| 427 | + <phase>pre-site</phase> |
363 | 428 | <configuration> |
364 | 429 | <outputDirectory>${project.build.directory}/site-src</outputDirectory> |
365 | 430 | <resources> |
|
378 | 443 | <configuration> |
379 | 444 | <locales>en,es,zh_CN,ja,ko</locales> |
380 | 445 | <siteDirectory>${project.build.directory}/site-src</siteDirectory> |
381 | | - </configuration> |
| 446 | + </configuration> |
382 | 447 | </plugin> |
383 | 448 | <!-- We are not modular yet but use automatic module names, javadoc plugin has well known incorrect determination of modular, patch it --> |
384 | 449 | <plugin> |
|
394 | 459 | </configuration> |
395 | 460 | </plugin> |
396 | 461 | </plugins> |
397 | | - |
398 | | - <resources> |
399 | | - <resource> |
400 | | - <directory>${project.basedir}</directory> |
401 | | - <targetPath>META-INF</targetPath> |
402 | | - <includes> |
403 | | - <include>LICENSE</include> |
404 | | - <include>NOTICE</include> |
405 | | - </includes> |
406 | | - </resource> |
407 | | - <resource> |
408 | | - <directory>${project.basedir}/src/main/resources</directory> |
409 | | - </resource> |
410 | | - </resources> |
411 | | - <testResources> |
412 | | - <testResource> |
413 | | - <directory>${project.build.testSourceDirectory}</directory> |
414 | | - <excludes> |
415 | | - <exclude>**/*.java</exclude> |
416 | | - </excludes> |
417 | | - </testResource> |
418 | | - </testResources> |
419 | 462 | </build> |
420 | | - |
421 | | - <repositories> |
422 | | - <repository> |
423 | | - <id>sonatype-oss-snapshots</id> |
424 | | - <name>Sonatype OSS Snapshots Repository</name> |
425 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
426 | | - </repository> |
427 | | - <repository> |
428 | | - <id>spring-snapshot</id> |
429 | | - <name>Spring Snapshots</name> |
430 | | - <url>https://repo.spring.io/snapshot</url> |
431 | | - <releases> |
432 | | - <enabled>false</enabled> |
433 | | - </releases> |
434 | | - </repository> |
435 | | - <repository> |
436 | | - <id>spring-milestone</id> |
437 | | - <name>Spring Milestone</name> |
438 | | - <url>https://repo.spring.io/milestone</url> |
439 | | - <snapshots> |
440 | | - <enabled>false</enabled> |
441 | | - </snapshots> |
442 | | - </repository> |
443 | | - </repositories> |
444 | | - |
445 | | - <pluginRepositories> |
446 | | - <pluginRepository> |
447 | | - <id>spring-snapshot</id> |
448 | | - <name>Spring Snapshots</name> |
449 | | - <url>https://repo.spring.io/snapshot</url> |
450 | | - <releases> |
451 | | - <enabled>false</enabled> |
452 | | - </releases> |
453 | | - </pluginRepository> |
454 | | - <pluginRepository> |
455 | | - <id>spring-milestone</id> |
456 | | - <name>Spring Milestone</name> |
457 | | - <url>https://repo.spring.io/milestone</url> |
458 | | - <snapshots> |
459 | | - <enabled>false</enabled> |
460 | | - </snapshots> |
461 | | - </pluginRepository> |
462 | | - </pluginRepositories> |
463 | 463 | </project> |
0 commit comments