Search Gradle plugins

Version 2.0.1 (latest)

Created 30 December 2021.

Agitator is a Gradle plugin for applying model-driven architecture principles with Fermenter

Using the plugins DSL:

plugins {
  id("org.bitbucket.cpointe.fermenter.agitator") version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.bitbucket.cpointe.fermenter:agitator:2.0.1")
  }
}

apply(plugin = "org.bitbucket.cpointe.fermenter.agitator")

Using the plugins DSL:

plugins {
  id "org.bitbucket.cpointe.fermenter.agitator" version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.bitbucket.cpointe.fermenter:agitator:2.0.1"
  }
}

apply plugin: "org.bitbucket.cpointe.fermenter.agitator"

Learn how to apply plugins to subprojects