Search Gradle plugins

ch.netzwerg.release.pub

Complements 'ch.netzwerg.release' plugin with publication channels

https://github.com/netzwerg/gradle-release-pub-plugin

Version 0.1.0

Created 02 January 2015.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "ch.netzwerg.release.pub" version "0.1.0"
}

Using legacy plugin application:

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

apply plugin: "ch.netzwerg.release.pub"

Learn how to apply plugins to subprojects