Skip to content

Latest commit

 

History

History

libtiled-java

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

libtiled - Java library to work with Tiled maps

This is a small library meant to make it easy to use Tiled maps in your Java project. It is based on the Java version of Tiled.

This small library is BSD licensed. See the LICENSE.BSD file for details.

Authors

https://www.mapeditor.org/

Maven

Add into <dependencies> of your pom.xml:

    <dependency>
      <groupId>org.mapeditor</groupId>
      <artifactId>libtiled</artifactId>
      <version>x.y.z</version>
    </dependency>

Consult the Maven repository for the latest org.mapeditor/libtiled version.

sbt

Add the following to your build.sbt:

libraryDependencies += "org.mapeditor" % "libtiled" % "x.y.z"

Building

To make libtiled.jar, install Apache Maven and run the following command:

mvn clean install

To run all unit-tests, run the following command:

mvn test -P release-profile

To generate reports and documentation, run:

mvn site