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