MVN

org.activecomponents.jadex : jadex-serialization-xml

Maven & Gradle

Sep 08, 2022
19 usages
41 stars

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 other 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>org.activecomponents.jadex</groupId>
    <artifactId>jadex-serialization-xml</artifactId>
    <version>4.0.267</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.activecomponents.jadex : jadex-serialization-xml to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 4.0.267

All Versions

Choose a version of org.activecomponents.jadex : jadex-serialization-xml to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
4.0.x
jadex-serialization-xml-4.0.267
jadex-serialization-xml-4.0.266
jadex-serialization-xml-4.0.265
jadex-serialization-xml-4.0.264
jadex-serialization-xml-4.0.263
jadex-serialization-xml-4.0.262
jadex-serialization-xml-4.0.261
jadex-serialization-xml-4.0.260
jadex-serialization-xml-4.0.258
jadex-serialization-xml-4.0.257
jadex-serialization-xml-4.0.256
jadex-serialization-xml-4.0.255
jadex-serialization-xml-4.0.254
jadex-serialization-xml-4.0.252
jadex-serialization-xml-4.0.250
jadex-serialization-xml-4.0.249
jadex-serialization-xml-4.0.244
jadex-serialization-xml-4.0.241

How to add a dependency to Maven

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

<dependency>
    <groupId>org.activecomponents.jadex</groupId>
    <artifactId>jadex-serialization-xml</artifactId>
    <version>4.0.267</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.activecomponents.jadex : jadex-serialization-xml gradle dependency to your build.gradle file:

implementation 'org.activecomponents.jadex:jadex-serialization-xml:4.0.267'

Gradle Kotlin DSL: Add the following org.activecomponents.jadex : jadex-serialization-xml gradle kotlin dependency to your build.gradle.kts file:

implementation("org.activecomponents.jadex:jadex-serialization-xml:4.0.267")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.activecomponents.jadex : jadex-serialization-xml sbt scala dependency to your build.sbt file:

libraryDependencies += "org.activecomponents.jadex" % "jadex-serialization-xml" % "4.0.267"

Advertisement