• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..10-Aug-2021-

src/H10-Aug-2021-19,12412,757

README.mdH A D10-Aug-20211.1 KiB5131

pom.xmlH A D10-Aug-20218.4 KiB219211

README.md

1# libtiled - Java library to work with Tiled maps
2
3This is a small library meant to make it easy to use Tiled maps in your Java
4project. It is based on the Java version of Tiled.
5
6This small library is BSD licensed. See the LICENSE.BSD file for details.
7
8## Authors
9
10* Adam Turk <aturk@biggeruniverse.com>
11* Thorbjørn Lindeijer <thorbjorn@lindeijer.nl>
12* Mike Thomas <mikepthomas@outlook.com>
13
14https://www.mapeditor.org/
15
16## Maven
17
18Add into `<dependencies>` of your `pom.xml`:
19
20```xml
21    <dependency>
22      <groupId>org.mapeditor</groupId>
23      <artifactId>libtiled</artifactId>
24      <version>x.y.z</version>
25    </dependency>
26```
27
28Consult the Maven repository for the latest [org.mapeditor/libtiled](https://mvnrepository.com/artifact/org.mapeditor/libtiled) version.
29
30## sbt
31
32Add the following to your `build.sbt`:
33
34```
35libraryDependencies += "org.mapeditor" % "libtiled" % "x.y.z"
36```
37
38## Building
39
40To make libtiled.jar, install [Apache Maven](http://maven.apache.org/) and run the following command:
41
42    mvn clean install
43
44To run all unit-tests, run the following command:
45
46    mvn test -P release-profile
47
48To generate reports and documentation, run:
49
50    mvn site
51