gradle-release-plugin icon indicating copy to clipboard operation
gradle-release-plugin copied to clipboard

A modern release plugin for gradle

Results 9 gradle-release-plugin issues
Sort by recently updated
recently updated
newest added

Closing https://github.com/ari/gradle-release-plugin/issues/20, https://github.com/ari/gradle-release-plugin/issues/25 and https://github.com/ari/gradle-release-plugin/issues/30 is nonsense. At least you can say you won't fix it. I am still having the same issue trying to use 2.2.2: ``` > Could...

The binary for 2.2.2 that was released to Bintray has a dependency on sqljet-1.1.8-SNAPSHOT which is not available through either Bintray or Maven Central. It's a pain to have to...

Currently, the only way to override automatic version number guessing is to issue the following : ``` bash gradle release -PreleaseVersion=2.0.0-SNAPSHOT ``` It would be nice though, to pass just...

enhancement

When I try to release under Windows 7x64 with following configuration: release { failOnSnapshotDependencies = true allowLocalModifications = false releaseDryRun = false scm = 'git' username = gitUser password =...

Hi, Is there any configuration/properties which i can change the path of the tags when i do a release on svn? Thank you in advance

The plugin fails if a tag is checked out from git: 16:44:21.741 [INFO] [org.gradle.process.internal.DefaultExecHandle] Starting process 'command 'git''. Working directory: (...) Command: git symbolic-ref -q HEAD 16:44:21.768 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing...

`release.scmVersion` is always returning `abc` while using with GitHub. expected git's commit# as `release.scmVersion` value. The documentation also not clear how `release` command automatically guess the next available version number...

Hi, I access our SVN repository over HTTPS, but unfortunately it seems that my credentials are not used when attempting to create the new tag. I intend to use default...

The pattern to determine the next tag version inSCMService is ``` groovy private final def releaseTagPattern = ~/^(\S+)-REL-(\d+)$/ ``` However the code in ReleasePlugin uses a slightly different pattern: ```...