Search Gradle plugins

com.nikecow.plugin-plugin

Owner: Nikecow

Sets up publishing and release process for all of the other plugins

https://github.com/nikecow/plugin-plugin

Sources: https://github.com/nikecow/plugin-plugin.git

Version 1.5 (latest)

Created 15 July 2016.

Sets up publishing and release process for all of the other plugins

Using the plugins DSL:

plugins {
  id("com.nikecow.plugin-plugin") version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.nikecow.plugin-plugin:plugin-plugin:1.5")
  }
}

apply(plugin = "com.nikecow.plugin-plugin")

Using the plugins DSL:

plugins {
  id "com.nikecow.plugin-plugin" version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.nikecow.plugin-plugin:plugin-plugin:1.5"
  }
}

apply plugin: "com.nikecow.plugin-plugin"

Learn how to apply plugins to subprojects