2013-10-11 03:46:59 +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"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-10-11 03:46:59 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2013-10-11 03:46:59 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Test Starter</name>
|
2016-03-30 00:19:29 +08:00
|
|
|
<description>Starter for testing Spring Boot applications with libraries including
|
|
|
|
JUnit, Hamcrest and Mockito</description>
|
2013-10-11 03:46:59 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2013-10-11 03:46:59 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2017-03-25 05:39:10 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2016-02-20 03:14:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
</dependency>
|
2016-03-23 01:22:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-test-autoconfigure</artifactId>
|
|
|
|
</dependency>
|
2016-03-23 04:02:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
</dependency>
|
2019-03-06 04:20:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
2016-02-07 06:47:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
</dependency>
|
2014-05-09 16:01:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
</dependency>
|
2013-10-11 03:46:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
</dependency>
|
2018-12-12 20:23:20 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
</dependency>
|
2016-03-23 04:02:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
</dependency>
|
2013-10-11 03:46:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2014-06-09 13:37:48 +08:00
|
|
|
<artifactId>spring-core</artifactId>
|
2013-10-11 03:46:59 +08:00
|
|
|
</dependency>
|
2014-06-09 13:37:48 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
</dependency>
|
2017-07-10 05:52:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit-core</artifactId>
|
2019-03-06 04:20:52 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-07-10 05:52:34 +08:00
|
|
|
</dependency>
|
2013-10-11 03:46:59 +08:00
|
|
|
</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>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
<artifactId>accessors-smart</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</conflictingDependencies>
|
|
|
|
</exception>
|
|
|
|
</exceptions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-10-11 03:46:59 +08:00
|
|
|
</project>
|