2013-04-24 17:02:07 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-06-01 05:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-17 00:01:11 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-04-24 17:02:07 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2013-04-24 17:02:07 +08:00
|
|
|
</parent>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-batch</artifactId>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Batch Starter</name>
|
2016-06-01 03:58:25 +08:00
|
|
|
<description>Starter for using Spring Batch</description>
|
2013-07-06 01:26:50 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2013-07-06 01:26:50 +08:00
|
|
|
</properties>
|
2019-10-02 16:55:37 +08:00
|
|
|
<scm>
|
|
|
|
<url>${git.url}</url>
|
|
|
|
<connection>${git.connection}</connection>
|
|
|
|
<developerConnection>${git.developerConnection}</developerConnection>
|
|
|
|
</scm>
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependencies>
|
2014-06-09 13:37:48 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2013-05-09 16:05:46 +08:00
|
|
|
<dependency>
|
2016-06-01 03:58:25 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
2014-06-05 00:30:16 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-06-09 13:37:48 +08:00
|
|
|
<groupId>org.springframework.batch</groupId>
|
|
|
|
<artifactId>spring-batch-core</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-06-14 18:47:05 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.basepom.maven</groupId>
|
|
|
|
<artifactId>duplicate-finder-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>duplicate-dependencies</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<exceptions>
|
|
|
|
<exception>
|
|
|
|
<conflictingDependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3_min</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlpull</groupId>
|
|
|
|
<artifactId>xmlpull</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</conflictingDependencies>
|
|
|
|
</exception>
|
|
|
|
</exceptions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-04-24 17:02:07 +08:00
|
|
|
</project>
|