Search Gradle plugins

Version 1.0 (latest)

Created 19 February 2018.

Highly customizable JOOQ code generator

Using the plugins DSL:

plugins {
  id("org.labun.jooq.codegenerator") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.labun.jooq:code-generator-gradle-plugin:1.0")
  }
}

apply(plugin = "org.labun.jooq.codegenerator")

Using the plugins DSL:

plugins {
  id "org.labun.jooq.codegenerator" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.labun.jooq:code-generator-gradle-plugin:1.0"
  }
}

apply plugin: "org.labun.jooq.codegenerator"

Learn how to apply plugins to subprojects