io.github.nicchongwb.ktjooqchecker
Owner: Nicholas Ch.
Kotlin jOOQ Checker Plugin using IR and KAPT
https://github.com/nicchongwb/kotlin-jooq-checker
Sources: https://github.com/nicchongwb/kotlin-jooq-checker
Version 0.1.0
0.1.0
Created 20 August 2024.
Kotlin jOOQ Checker Plugin using IR and KAPT
Using the plugins DSL:
plugins {
id("io.github.nicchongwb.ktjooqchecker") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.nicchongwb.ktjooqchecker:kotlin-ir-plugin-gradle:0.1.0")
}
}
apply(plugin = "io.github.nicchongwb.ktjooqchecker")
Using the plugins DSL:
plugins {
id "io.github.nicchongwb.ktjooqchecker" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.nicchongwb.ktjooqchecker:kotlin-ir-plugin-gradle:0.1.0"
}
}
apply plugin: "io.github.nicchongwb.ktjooqchecker"