org.domaframework.doma.compile
Owner: Toshihiro Nakamura
Allows annotation processors to read Doma resources at compile-time
https://github.com/domaframework/doma-compile-plugin
Sources: https://github.com/domaframework/doma-compile-plugin.git
Version 2.0.0
2.0.0
Created 19 July 2022.
Allows annotation processors to read Doma resources at compile-time
Using the plugins DSL:
plugins {
id("org.domaframework.doma.compile") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.domaframework.doma:compile:2.0.0")
}
}
apply(plugin = "org.domaframework.doma.compile")
Using the plugins DSL:
plugins {
id "org.domaframework.doma.compile" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.domaframework.doma:compile:2.0.0"
}
}
apply plugin: "org.domaframework.doma.compile"