##// 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
cin
Initial coomit, basic hg tasks
r0 plugins {
id "java-gradle-plugin"
cin
added preReleasePolicy, stagingBookmark, releaseBookmark to the extension, added documentation....
r1 id "com.gradle.plugin-publish" version "0.16.0"
cin
Initial coomit, basic hg tasks
r0 }
repositories {
mavenCentral()
}
gradlePlugin {
plugins {
cin
added preReleasePolicy, stagingBookmark, releaseBookmark to the extension, added documentation....
r1 mercurialPlugin {
cin
Initial coomit, basic hg tasks
r0 id = 'org.implab.gradle-mercurial'
implementationClass = 'org.implab.gradle.mercurial.MercurialPlugin'
cin
added preReleasePolicy, stagingBookmark, releaseBookmark to the extension, added documentation....
r1 displayName = "Integrates mercurial into the build script"
description = 'Automatically calculates version using tags. Simple wrapper around cli.'
cin
Initial coomit, basic hg tasks
r0 }
}
}
cin
added preReleasePolicy, stagingBookmark, releaseBookmark to the extension, added documentation....
r1
pluginBundle {
website = 'https://code.implab.org/implab/gradle-mercurial-plugin'
vcsUrl = 'https://code.implab.org/implab/gradle-mercurial-plugin'
tags = ['hg', 'mercurial']
}