Installation
The isa4j library is available from the Maven Repository:
https://mvnrepository.com/artifact/de.ipk-gatersleben/isa4j
You can either click on the version you want to download (we recommend using the latest version unless you have specific reasons not to) and then download the jar manually by clicking on the jar button under files or include one of the following snippets in your build management tool configuration file (Maven, Gradle, Ivy…).
Alternatively, you can also download the JARs from the GitHub Repository Release page or use the Central Maven Repository search interface.
Please note that if you want to make use of isa4j’s logging features you will have to include an SLF4J logging implementation in your classpath as well.
Gradle
repositories {
mavenCentral()
}
dependencies {
implementation group: 'de.ipk-gatersleben', name:'isa4j', version:'1.1.0'
}
Maven
<dependency>
<groupId>de.ipk-gatersleben</groupId>
<artifactId>isa4j</artifactId>
<version>1.1.0</version>
</dependency>
Scala BST
libraryDependencies += "de.ipk-gatersleben" % "isa4j" % "1.1.0"
Apache Ivy
<dependency org="de.ipk-gatersleben" name="isa4j" rev="1.1.0" />
Groovy Grape
@Grapes(
@Grab(group='de.ipk-gatersleben', module='isa4j', version='1.1.0')
)
Leiningen
[de.ipk-gatersleben/isa4j "1.1.0"]
Apache Buildr
'de.ipk-gatersleben:isa4j:jar:1.1.0'
PURL
pkg:maven/de.ipk-gatersleben/isa4j@1.1.0