Search Gradle plugins

com.elypia.commandler

Perform pre/post compilation steps with Commandler as build steps rather than in runtime.

https://elypia.com/

Sources: https://gitlab.com/Elypia/commandler-gradle-plugin

Version 1.0.0 (latest)

Created 05 July 2019.

Perform pre/post compilation steps with Commandler as build steps rather than in runtime.

Using the plugins DSL:

plugins {
  id("com.elypia.commandler") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.elypia.commandler:commandler:1.0.0")
  }
}

apply(plugin = "com.elypia.commandler")

Using the plugins DSL:

plugins {
  id "com.elypia.commandler" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.elypia.commandler:commandler:1.0.0"
  }
}

apply plugin: "com.elypia.commandler"

Learn how to apply plugins to subprojects