spring-boot/spring-boot-starters/spring-boot-starter-batch/pom.xml

68 lines
2.0 KiB
XML
Raw Normal View History

2013-04-24 17:02:07 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starters</artifactId>
2019-01-11 23:59:00 +08:00
<version>1.5.20.BUILD-SNAPSHOT</version>
2013-04-24 17:02:07 +08:00
</parent>
<artifactId>spring-boot-starter-batch</artifactId>
2014-04-01 16:10:51 +08:00
<name>Spring Boot Batch Starter</name>
<description>Starter for using Spring Batch</description>
<url>https://projects.spring.io/spring-boot/</url>
2014-04-01 16:10:51 +08:00
<organization>
<name>Pivotal Software, Inc.</name>
<url>https://www.spring.io</url>
2014-04-01 16:10:51 +08:00
</organization>
2013-07-06 01:26:50 +08:00
<properties>
<main.basedir>${basedir}/../..</main.basedir>
</properties>
2013-04-24 17:02:07 +08:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
</dependencies>
<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>