org.elypia.commandler
Owner: Elypia CIC
Post compilation utilities to get more out of Commandler.
Sources: https://gitlab.com/Elypia/commandler-gradle-plugin
Version 1.3.0 (latest)
1.3.0
Created 22 July 2020.
Post compilation utilities to get more out of Commandler.
Using the plugins DSL:
plugins {
id("org.elypia.commandler") version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.elypia.commandler:commandler:1.3.0")
}
}
apply(plugin = "org.elypia.commandler")
Using the plugins DSL:
plugins {
id "org.elypia.commandler" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.elypia.commandler:commandler:1.3.0"
}
}
apply plugin: "org.elypia.commandler"