2016-03-01 15:21:06 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-04-11 05:26:50 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.baeldung</groupId>
|
2017-05-03 18:38:08 +02:00
|
|
|
<artifactId>xstream</artifactId>
|
2016-04-11 05:26:50 -05:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2017-05-03 18:38:08 +02:00
|
|
|
<name>xstream</name>
|
2016-04-11 05:26:50 -05:00
|
|
|
<description>An Introduction To XStream</description>
|
2016-03-01 15:21:06 +05:30
|
|
|
|
2017-05-09 22:37:43 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2018-04-26 18:07:47 +05:30
|
|
|
</parent>
|
|
|
|
|
2016-04-11 05:26:50 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
<artifactId>xstream</artifactId>
|
2016-12-01 12:53:06 +02:00
|
|
|
<version>${xstream.version}</version>
|
2016-04-11 05:26:50 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
|
|
<artifactId>jettison</artifactId>
|
2016-12-01 12:53:06 +02:00
|
|
|
<version>${jettison.version}</version>
|
2016-04-11 05:26:50 -05:00
|
|
|
</dependency>
|
2016-03-01 15:21:06 +05:30
|
|
|
|
2016-04-11 05:26:50 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2016-12-01 12:53:06 +02:00
|
|
|
<properties>
|
|
|
|
<xstream.version>1.4.9</xstream.version>
|
|
|
|
<jettison.version>1.3.8</jettison.version>
|
|
|
|
</properties>
|
|
|
|
|
2016-03-01 15:21:06 +05:30
|
|
|
</project>
|