Search Gradle plugins

org.jet.sql.codegen

Plugin to generate type safe java wrapper classes for running JDBC Prepared Statement

https://jetsasank.github.io/sql-wrapper-codegen/

Sources: https://github.com/jetsasank/sql-wrapper-codegen

Version 1.1.2 (latest)

Created 16 June 2020.

Plugin to generate type safe java wrapper classes for running JDBC Prepared Statement

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jet.sql.codegen") version "1.1.2"
}

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("org.jet.sql.codegen:org.jet.sql.codegen.gradle.plugin:1.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.jet.sql.codegen")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jet.sql.codegen:org.jet.sql.codegen.gradle.plugin:1.1.2")
      }
    }
    
    apply(plugin = "org.jet.sql.codegen")
  • Applying plugins to all subprojects .