java-tutorials/xmlunit2/pom.xml

71 lines
2.3 KiB
XML
Raw Normal View History

2016-07-22 15:14:48 -04: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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
2016-10-23 13:10:16 -04:00
<artifactId>xmlunit2</artifactId>
2016-07-22 15:14:48 -04:00
<version>1.0</version>
<name>XMLUnit-2</name>
2016-12-01 06:07:39 -05:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2017-03-24 11:17:34 -04:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
</configuration>
</plugin>
2016-12-01 06:07:39 -05:00
</plugins>
</build>
2016-07-22 15:14:48 -04:00
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2016-12-01 06:07:39 -05:00
<version>${junit.version}</version>
2016-07-22 15:14:48 -04:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
2016-12-01 06:07:39 -05:00
<version>${hamcrest.version}</version>
2016-07-22 15:14:48 -04:00
</dependency>
2016-12-01 06:07:39 -05:00
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-matchers</artifactId>
<version>${xmlunit.version}</version>
</dependency>
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>
<version>${xmlunit.version}</version>
</dependency>
2016-07-22 15:14:48 -04:00
</dependencies>
2016-12-01 06:07:39 -05:00
<properties>
<!-- testing -->
<junit.version>4.12</junit.version>
<hamcrest.version>1.3</hamcrest.version>
<xmlunit.version>2.3.0</xmlunit.version>
<!-- Maven plugins -->
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
</properties>
2017-03-24 11:17:34 -04:00
2016-07-22 15:14:48 -04:00
</project>