##// END OF EJS Templates
added preReleasePolicy, stagingBookmark, releaseBookmark to the extension, added documentation....
added preReleasePolicy, stagingBookmark, releaseBookmark to the extension, added documentation. SemVersion made read-only record, convenient method names.

File last commit:

r1:193d6f38df6e v1.0.0 default
r1:193d6f38df6e v1.0.0 default
Show More
build.gradle
26 lines | 653 B | text/x-groovy | GroovyLexer
plugins {
id "java-gradle-plugin"
id "com.gradle.plugin-publish" version "0.16.0"
}
repositories {
mavenCentral()
}
gradlePlugin {
plugins {
mercurialPlugin {
id = 'org.implab.gradle-mercurial'
implementationClass = 'org.implab.gradle.mercurial.MercurialPlugin'
displayName = "Integrates mercurial into the build script"
description = 'Automatically calculates version using tags. Simple wrapper around cli.'
}
}
}
pluginBundle {
website = 'https://code.implab.org/implab/gradle-mercurial-plugin'
vcsUrl = 'https://code.implab.org/implab/gradle-mercurial-plugin'
tags = ['hg', 'mercurial']
}