Search Gradle plugins

Version 1.2.1 (latest)

Created 05 February 2024.

Generates Data Access Objects from a database with JetBrains Exposed

Using the plugins DSL:

plugins {
  id("ch.rethinc.exposed.generator") version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.rethinc:exposed-dao-generator:1.2.1")
  }
}

apply(plugin = "ch.rethinc.exposed.generator")

Using the plugins DSL:

plugins {
  id "ch.rethinc.exposed.generator" version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.rethinc:exposed-dao-generator:1.2.1"
  }
}

apply plugin: "ch.rethinc.exposed.generator"

Learn how to apply plugins to subprojects