William Brawner
f69bf81630
This still requires manually running the gradle task but the next step will be getting a GitHub workflow to perform the release whenever a new tag is pushed
18 lines
No EOL
317 B
Text
18 lines
No EOL
317 B
Text
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("release-helper") {
|
|
id = "com.wbrawner.releasehelper"
|
|
implementationClass = "com.wbrawner.releasehelper.ReleaseHelperPlugin"
|
|
}
|
|
}
|
|
} |