Search Gradle plugins

net.h34t.scovy

A Gradle plugin to generate type-safe kotlin DAO and DTO code from SQL queries.

https://codeberg.org/h34tnet/scovy

Sources: https://codeberg.com/h34tnet/scovy

Version 0.1.0 (latest)

Created 04 December 2023.

A Gradle plugin to generate type-safe kotlin DAO and DTO code from SQL queries.

Using the plugins DSL:

plugins {
  id("net.h34t.scovy") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.h34t:scovy:0.1.0")
  }
}

apply(plugin = "net.h34t.scovy")

Using the plugins DSL:

plugins {
  id "net.h34t.scovy" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.h34t:scovy:0.1.0"
  }
}

apply plugin: "net.h34t.scovy"

Learn how to apply plugins to subprojects