cedarsoft Serialization can be downloaded using Maven or downloaded manually.
The current stable version is: 4.0.7
The current development version is: 4.0.8-SNAPSHOT
There exists jars containing all dependencies for each backend. Those can be downloaded here:
cedarsoft Serialization can be used by adding a Maven dependency to your project. The artifacts are hosted at Maven Central.
Depending on the preferred backend one of the following dependencies has to be added
<dependency> <groupId>com.cedarsoft.serialization</groupId> <artifactId>stax</artifactId> <version>4.0.7</version> </dependency>
Optional Woodstox dependency:
<dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-asl</artifactId> <version>4.0.6</version> </dependency>
<dependency> <groupId>com.cedarsoft.serialization</groupId> <artifactId>stax-mate</artifactId> <version>4.0.7</version> </dependency>
Optional Woodstox dependency:
<dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-asl</artifactId> <version>4.0.6</version> </dependency>
The current development version is: 4.0.8-SNAPSHOT
The snapshots are stored at http://nexus.cedarsoft.com/content/repositories/public-snapshots/. Just add a repository entry to your pom.xml:
<repositories>
<repository>
<id>cedarsoftSnapshotRepository</id>
<name>cedarsoft Snapshot Repository</name>
<url>http://nexus.cedarsoft.com/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>