Search Gradle plugins

Version 1.1.0

Created 25 April 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("ch.netzwerg.release") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.netzwerg:gradle-release-plugin:1.1.0")
  }
}

apply(plugin = "ch.netzwerg.release")

Using the plugins DSL:

plugins {
  id "ch.netzwerg.release" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.netzwerg:gradle-release-plugin:1.1.0"
  }
}

apply plugin: "ch.netzwerg.release"

Learn how to apply plugins to subprojects