- Make sure you have a working JDK 11 environment on your machine.
- Clone the project.
- Build the library and install it to your local Maven repository ($HOME/.m2):
./mvnw clean install
- Run the demo app from the commmand-line:
./mvnw exec:java -Dexec.mainClass="de.wesim.joditfx.DemoApp"
- Or, run the demo app from inside your IDE: Locate src/test/java/de/wesim/joditfx/ and run RunDemoAppInIDE.java.
- Integrate joditfx in your own Javafx project with this XML snippet:
<repositories>
<repository>
<id>mvn-repo</id>
<url>https://github.com/cwrsimon/artifacts/raw/master</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependency>
<groupId>de.wesim</groupId>
<artifactId>joditfx</artifactId>
<version>0.2.1</version>
</dependency>
- deployment to Maven Central Repository