gml-objects is a Java mapping for the OGC Geography Markup Language (GML).
gml-objects is licensed under the Apache License, Version 2.0.
See the LICENSE
file for more details.
The latest stable release of gml-objects is 1.1.2.
Download the latest gml-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.
gml-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/gml-objects
. Simply put the
gml-objects-<version>.jar
library file and its mandatory dependencies from the lib
folder on your modulepath to
start developing with gml-objects. Have fun :-)
gml-objects is also available as Maven artifact from the
Maven Central Repository. To add gml-objects to your
project with Maven, add the following code to your pom.xml
. You may need to adapt the gml-objects version number.
<dependency>
<groupId>org.xmlobjects.gml</groupId>
<artifactId>gml-objects</artifactId>
<version>1.1.2</version>
</dependency>
Here is how you use gml-objects with your Gradle project:
repositories {
mavenCentral()
}
dependencies {
compile 'org.xmlobjects.gml:gml-objects:1.1.2'
}