java-tutorials/xstream/pom.xml

89 lines
2.9 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2016-04-11 06:26:50 -04:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.baeldung</groupId>
<artifactId>xstream</artifactId>
2016-04-11 06:26:50 -04:00
<version>0.0.1-SNAPSHOT</version>
<name>xstream</name>
2016-04-11 06:26:50 -04:00
<description>An Introduction To XStream</description>
2016-04-11 06:26:50 -04:00
<dependencies>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
2016-12-01 05:53:06 -05:00
<version>${xstream.version}</version>
2016-04-11 06:26:50 -04:00
</dependency>
2016-04-11 06:26:50 -04:00
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
2016-12-01 05:53:06 -05:00
<version>${jettison.version}</version>
2016-04-11 06:26:50 -04:00
</dependency>
2016-04-11 06:26:50 -04:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2016-12-01 05:53:06 -05:00
<version>${junit.version}</version>
2016-04-11 06:26:50 -04:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${org.slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
2016-04-11 06:26:50 -04:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2016-12-01 05:53:06 -05:00
<version>${maven-compiler-plugin.version}</version>
2016-04-11 06:26:50 -04:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*IntegrationTest.java</exclude>
</excludes>
</configuration>
</plugin>
2016-04-11 06:26:50 -04:00
</plugins>
</build>
2016-04-04 06:18:35 -04:00
2016-12-01 05:53:06 -05:00
<properties>
<xstream.version>1.4.9</xstream.version>
<jettison.version>1.3.8</jettison.version>
<org.slf4j.version>1.7.21</org.slf4j.version>
<logback.version>1.1.7</logback.version>
2016-12-01 05:53:06 -05:00
<!-- testing -->
<junit.version>4.12</junit.version>
<!-- Maven plugins -->
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
</properties>
</project>