How to add a dependency to Maven
Add the following one.jkr.de.jkrsoftware.entity.locking.libraries : InMemoryStore-Locking-Library maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>one.jkr.de.jkrsoftware.entity.locking.libraries</groupId>
<artifactId>InMemoryStore-Locking-Library</artifactId>
<version>2021-12-16_21-59_ae52201</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following one.jkr.de.jkrsoftware.entity.locking.libraries : InMemoryStore-Locking-Library gradle dependency to your build.gradle
file:
implementation 'one.jkr.de.jkrsoftware.entity.locking.libraries:InMemoryStore-Locking-Library:2021-12-16_21-59_ae52201'
Gradle Kotlin DSL: Add the following one.jkr.de.jkrsoftware.entity.locking.libraries : InMemoryStore-Locking-Library gradle kotlin dependency to your build.gradle.kts
file:
implementation("one.jkr.de.jkrsoftware.entity.locking.libraries:InMemoryStore-Locking-Library:2021-12-16_21-59_ae52201")
How to add a dependency to SBT Scala
SBT Scala: Add the following one.jkr.de.jkrsoftware.entity.locking.libraries : InMemoryStore-Locking-Library sbt scala dependency to your build.sbt
file:
libraryDependencies += "one.jkr.de.jkrsoftware.entity.locking.libraries" % "InMemoryStore-Locking-Library" % "2021-12-16_21-59_ae52201"