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