com.funnydevs.conductor-lifecycle
Owner: Gulinelli
Annotations based lifecycle for Conductor controllers
Sources: https://github.com/FunnyDevs/Conductor-lifecycle
Version 0.0.1 (latest)
0.0.1
Created 03 March 2020.
Annotations based lifecycle for Conductor controllers
Using the plugins DSL:
plugins {
id("com.funnydevs.conductor-lifecycle") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("Hoop:conductor-lifecycle:0.0.1")
}
}
apply(plugin = "com.funnydevs.conductor-lifecycle")
Using the plugins DSL:
plugins {
id "com.funnydevs.conductor-lifecycle" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "Hoop:conductor-lifecycle:0.0.1"
}
}
apply plugin: "com.funnydevs.conductor-lifecycle"