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