Welcome to the jOOQ Express Edition, Professional Edition, and Enterprise Edition Maven repository

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:

Maven

pom.xml

    <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.xml

    <settings>
        <servers>
            <server>
                <id>jooq-pro</id>
                <username>Your license email address</username>
                <password>Your license key</password>
            </server>
        </servers>
    </settings>

Gradle

    buildscript {
        repositories {
            maven {
                url "https://repo.jooq.org/repo"
                credentials {
                    username "Your license email address"
                    password "Your license key"
                }
            }
        }
    }

Browser access