xal-objects is a Java mapping for the OASIS eXtensible Address Language (xAL).
xal-objects is licensed under the Apache License, Version 2.0.
See the LICENSE
file for more details.
The latest stable release of xal-objects is 1.1.2.
Download the latest xal-objects release binaries here. Previous releases are available from the releases section.
- To file bugs found in the software create a GitHub issue.
- To contribute code for fixing filed issues create a pull request with the issue id.
- To propose a new feature create a GitHub issue and open a discussion.
xal-objects requires Java 17 or higher. The project uses Gradle as build system. To build the library from source, clone the repository to your local machine and run the following command from the root of the repository.
> gradlew installDist
The script automatically downloads all required dependencies for building the module. So make sure you are connected to the internet.
The build process creates the output files in the folder build/install/xal-objects
. Simply put the
xal-objects-<version>.jar
library file and its mandatory dependencies from the lib
folder on your modulepath to
start developing with xal-objects. Have fun :-)
xal-objects is also available as Maven artifact from the
Maven Central Repository. To add xal-objects to your
project with Maven, add the following code to your pom.xml
. You may need to adapt the xal-objects version number.
<dependency>
<groupId>org.xmlobjects.xal</groupId>
<artifactId>xal-objects</artifactId>
<version>1.1.2</version>
</dependency>
Here is how you use xal-objects with your Gradle project:
repositories {
mavenCentral()
}
dependencies {
compile 'org.xmlobjects.xal:xal-objects:1.1.2'
}