MVN

org.xanot : xanot

Maven & Gradle

May 31, 2007

Xanot - OXM Object XML Mapper · Xanot is a kind of XML to Object Mapper. Very similar to what Apache have done with Commons-Digester, it basicaly maps XML data to an object model.

<dependency>
    <groupId>org.xanot</groupId>
    <artifactId>xanot</artifactId>
    <version>1.0.6</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.xanot : xanot to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.6

All Versions

Choose a version of org.xanot : xanot to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
xanot-1.0.6

How to add a dependency to Maven

Add the following org.xanot : xanot maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.xanot</groupId>
    <artifactId>xanot</artifactId>
    <version>1.0.6</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.xanot : xanot gradle dependency to your build.gradle file:

implementation 'org.xanot:xanot:1.0.6'

Gradle Kotlin DSL: Add the following org.xanot : xanot gradle kotlin dependency to your build.gradle.kts file:

implementation("org.xanot:xanot:1.0.6")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.xanot : xanot sbt scala dependency to your build.sbt file:

libraryDependencies += "org.xanot" % "xanot" % "1.0.6"

Advertisement