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.
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>
buildscript { repositories { maven { url "https://repo.jooq.org/repo" credentials { username "Your license email address" password "Your license key" } } } }