MVN

org.formix : dsx

Maven & Gradle

Aug 21, 2015
0 stars

Damn Simple XML · This library leverage method chaining. It is not compliant with the Java XML Standard API. It contains a serializer compatible with Microsoft XmlSerializer input/output XML format. It contains another serializer that is compatible with the DataContractSerializer from Microsoft. Along with the basic soap package provided, it becomes easy to do raw SOAP calls to any SOAP Web service. The XmlDocument class also offer XPath like methods to fetch information from the underlying XML tree.

<dependency>
    <groupId>org.formix</groupId>
    <artifactId>dsx</artifactId>
    <version>0.10.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 0.10.0

All Versions

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

Version Vulnerabilities Updated
0.10.x
dsx-0.10.0

How to add a dependency to Maven

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

<dependency>
    <groupId>org.formix</groupId>
    <artifactId>dsx</artifactId>
    <version>0.10.0</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'org.formix:dsx:0.10.0'

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

implementation("org.formix:dsx:0.10.0")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.formix" % "dsx" % "0.10.0"

Advertisement