How to add a dependency to Maven
Add the following com.cedarsoft : serialization maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.cedarsoft</groupId>
<artifactId>serialization</artifactId>
<version>stax-mate</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.cedarsoft : serialization gradle dependency to your build.gradle
file:
implementation 'com.cedarsoft:serialization:stax-mate'
Gradle Kotlin DSL: Add the following com.cedarsoft : serialization gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.cedarsoft:serialization:stax-mate")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.cedarsoft : serialization sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.cedarsoft" % "serialization" % "stax-mate"