Search Gradle plugins

Version 1.0.0

Created 09 September 2019.

custom soft key

Using the plugins DSL:

plugins {
  id("wg.soft.key") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.wg.soft.key:softKeyPlugin:1.0.0")
  }
}

apply(plugin = "wg.soft.key")

Using the plugins DSL:

plugins {
  id "wg.soft.key" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.wg.soft.key:softKeyPlugin:1.0.0"
  }
}

apply plugin: "wg.soft.key"

Learn how to apply plugins to subprojects