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 2.7.5 (latest)
2.7.5
Created 30 June 2022.
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 "2.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.yakworks:gradle-plugins:2.7.5")
}
}
apply(plugin = "yakworks.shipyak")
Using the plugins DSL:
plugins {
id "yakworks.shipyak" version "2.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.yakworks:gradle-plugins:2.7.5"
}
}
apply plugin: "yakworks.shipyak"