Search Gradle plugins

Version 0.2.0 (latest)

Created 30 May 2022.

Gradle plugin for the Kommando framework

Using the plugins DSL:

plugins {
  id("net.ormr.kommando.plugin") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.ormr.kommando:gradle-plugin:0.2.0")
  }
}

apply(plugin = "net.ormr.kommando.plugin")

Using the plugins DSL:

plugins {
  id "net.ormr.kommando.plugin" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.ormr.kommando:gradle-plugin:0.2.0"
  }
}

apply plugin: "net.ormr.kommando.plugin"

Learn how to apply plugins to subprojects