Search Gradle plugins

Version 3.0.1 (latest)

3.0.1

Created 29 September 2024.

Allows annotation processors to read Doma resources at compile-time

Using the plugins DSL:

plugins {
  id("org.domaframework.doma.compile") version "3.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.domaframework.doma:compile:3.0.1")
  }
}

apply(plugin = "org.domaframework.doma.compile")

Using the plugins DSL:

plugins {
  id "org.domaframework.doma.compile" version "3.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.domaframework.doma:compile:3.0.1"
  }
}

apply plugin: "org.domaframework.doma.compile"

Learn how to apply plugins to subprojects