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.1
1.0.1
Created 03 May 2019.
Wrapper around shipkit so it works without a non-bintray maven repo susch as artifactory, integrates with circleCI, adds Grails support and generates mkdocs
Using the plugins DSL:
plugins {
id("yakworks.shipyak") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.yakworks:gradle-plugins:1.0.1")
}
}
apply(plugin = "yakworks.shipyak")
Using the plugins DSL:
plugins {
id "yakworks.shipyak" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.yakworks:gradle-plugins:1.0.1"
}
}
apply plugin: "yakworks.shipyak"