How to add a dependency to Maven
Add the following me.mrxbox98.jast : jast maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>me.mrxbox98.jast</groupId>
<artifactId>jast</artifactId>
<version>2.1.2</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following me.mrxbox98.jast : jast gradle dependency to your build.gradle
file:
implementation 'me.mrxbox98.jast:jast:2.1.2'
Gradle Kotlin DSL: Add the following me.mrxbox98.jast : jast gradle kotlin dependency to your build.gradle.kts
file:
implementation("me.mrxbox98.jast:jast:2.1.2")
How to add a dependency to SBT Scala
SBT Scala: Add the following me.mrxbox98.jast : jast sbt scala dependency to your build.sbt
file:
libraryDependencies += "me.mrxbox98.jast" % "jast" % "2.1.2"