org.bitbucket.cpointe.fermenter.agitator
Owner: Eric Konieczny
Agitator is a Gradle plugin for applying model-driven architecture principles with Fermenter
https://bitbucket.org/cpointe/agitator
Sources: https://bitbucket.org/cpointe/agitator.git
Version 2.0.1 (latest)
2.0.1
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"