Search Gradle plugins

Version 1.3.6 (latest)

Created 11 August 2024.

Generates Data Access Objects from a database with JetBrains Exposed

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ch.rethinc.exposed.generator:ch.rethinc.exposed.generator.gradle.plugin:1.3.6")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ch.rethinc.exposed.generator")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ch.rethinc.exposed.generator:ch.rethinc.exposed.generator.gradle.plugin:1.3.6")
      }
    }
    
    apply(plugin = "ch.rethinc.exposed.generator")
  • Applying plugins to all subprojects .