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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.domaframework.doma:compile:3.0.1")
      }
    }
    
    apply(plugin = "org.domaframework.doma.compile")
  • Applying plugins to all subprojects .