This repository offers access to Maven artifacts for the following distributions and versions:
For the jOOQ Free Trial Edition, please contact sales@datageekery.com to get an extended trial license key, or download the ZIP file from here: https://www.jooq.org/download/versions.
Please configure your Maven or Gradle build with the following additional repository configuration:
<repositories> <repository> <id>jooq-pro</id> <url>https://repo.jooq.org/repo</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>jooq-pro</id> <url>https://repo.jooq.org/repo</url> </pluginRepository> </pluginRepositories>
<settings> <servers> <server> <id>jooq-pro</id> <username>Your license email address</username> <password>Your license key</password> </server> </servers> </settings>
repositories { mavenLocal() mavenCentral() maven { url = uri("https://repo.jooq.org/repo") credentials { username = "Your license email address" password = "Your license key" } } }
pluginManagement { repositories { mavenLocal() gradlePluginPortal() maven { url = uri("https://repo.jooq.org/repo") credentials { username = "Your license email address" password = "Your license key" } } } }