Search Gradle plugins

Version 0.1.2 (latest)

Created 26 April 2023.

Code Generation plugin for Gradle

Using the plugins DSL:

plugins {
  id("dev.brella.amber") version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.brella:amber-plugin:0.1.2")
  }
}

apply(plugin = "dev.brella.amber")

Using the plugins DSL:

plugins {
  id "dev.brella.amber" version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.brella:amber-plugin:0.1.2"
  }
}

apply plugin: "dev.brella.amber"

Learn how to apply plugins to subprojects