Search Gradle plugins

yakworks.shipyak

Owner: 9ci Bot

Wrapper around shipkit so it works without a non-bintray maven repo susch as artifactory, integrates with circleCI, adds Grails support and generates mkdocs

https://github.com/yakworks/gradle-plugins

Sources: https://github.com/yakworks/gradle-plugins.git

Version 1.0.6

Created 06 May 2019.

ShipYak Root Project, Does the defaults to get ShipYak and ShipKit setup. Usually you would apply one of the others but if multi-project then put this on the root

Using the plugins DSL:

plugins {
  id("yakworks.shipyak") version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.yakworks:gradle-plugins:1.0.6")
  }
}

apply(plugin = "yakworks.shipyak")

Using the plugins DSL:

plugins {
  id "yakworks.shipyak" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.yakworks:gradle-plugins:1.0.6"
  }
}

apply plugin: "yakworks.shipyak"

Learn how to apply plugins to subprojects