MVN

net.sourceforge.jadex : jadex-xml

Maven & Gradle

Dec 20, 2013
41 usages

jadex-xml · Jadex XML is an XML data binding framework for Java and also for other representations. The main idea of Jadex XML is that neither the XML-Schema on the one side nor the Java classes on the other side should define the binding. Instead, a separate mapping between both is used as a mediation. This allows designing the XML representation independent of the Java side but still being able to connect both as desired. This idea was first put forward by the JiBX data binding framework. Jadex XML pushes it further by combining it with the configuration by exception principle. The framework can detect obvious correspondences between both sides automatically and only needs configuration information when translations are necessary. The configuration information is currently specified directly in form of Java configuration classes.

<dependency>
    <groupId>net.sourceforge.jadex</groupId>
    <artifactId>jadex-xml</artifactId>
    <version>2.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sourceforge.jadex : jadex-xml to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.4
  • Latest Release Candidate: 2.0-rc10

All Versions

Choose a version of net.sourceforge.jadex : jadex-xml to add to Maven or Gradle - All Versions:

  • Version Updated
  • jadex-xml-2.4

    Dec 20, 2013
  • jadex-xml-2.3

    Feb 17, 2013
  • jadex-xml-2.2.1

    Sep 21, 2012
  • jadex-xml-2.2

    Sep 10, 2012
  • jadex-xml-2.1

    Jul 29, 2012
  • jadex-xml-2.0

    Sep 30, 2011
  • jadex-xml-2.0-rc10

    Sep 17, 2011
  • jadex-xml-2.0-rc9

    Aug 09, 2011
  • jadex-xml-2.0-rc8

    Jul 29, 2011
  • jadex-xml-2.0-rc7

    Jul 29, 2011
  • jadex-xml-2.0-rc6

    Dec 10, 2010
  • jadex-xml-2.0-rc5

    Sep 11, 2010
  • jadex-xml-2.0-rc4

    Sep 07, 2010
  • jadex-xml-2.0-rc3

    Jun 10, 2010

How to add a dependency to Maven

Add the following net.sourceforge.jadex : jadex-xml maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.sourceforge.jadex</groupId>
    <artifactId>jadex-xml</artifactId>
    <version>2.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sourceforge.jadex : jadex-xml gradle dependency to your build.gradle file:

implementation 'net.sourceforge.jadex:jadex-xml:2.4'

Gradle Kotlin DSL: Add the following net.sourceforge.jadex : jadex-xml gradle kotlin dependency to your build.gradle.kts file:

implementation("net.sourceforge.jadex:jadex-xml:2.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sourceforge.jadex : jadex-xml sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sourceforge.jadex" % "jadex-xml" % "2.4"