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.0.4-SNAPSHOT
2.0.4-SNAPSHOT
Created 22 April 2021.
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.0.4-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.yakworks:gradle-plugins:2.0.4-SNAPSHOT")
}
}
apply(plugin = "yakworks.shipyak")
Using the plugins DSL:
plugins {
id "yakworks.shipyak" version "2.0.4-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.yakworks:gradle-plugins:2.0.4-SNAPSHOT"
}
}
apply plugin: "yakworks.shipyak"