Tobias Schulte

Results 55 comments of Tobias Schulte

In the selector, it explicitly says ``` && project.gradle.startParameter.taskNames.find { it == 'release' } ``` to only set the version, when doing a release. Unless you do a release, -SNAPSHOT...

I just checked using https://github.com/tschulte/gradle-semantic-release-test/. ``` [21:47][~/projects/gradle-semantic-release-test (master u=)]$ git checkout -b rc/doesntmatter Switched to a new branch 'rc/doesntmatter' [21:47][~/projects/gradle-semantic-release-test (rc/doesntmatter)]$ git commit -m 'feat: cool new feature' --allow-empty [rc/doesntmatter...

I think this is related to #24. Internally my plugin uses the gradle-git plugin. I will have a look at this. Semver FAQ recommends to start with `0.1.0`, but it...

Thank you very much for that link. I didn't know that. I will give a talk at http://javaland.eu about semantic-release (using this plugin, of course). I will incorporate that info.

Thank you for your question. I am rather busy at the moment. I will have a look at it next week.

Your use case is not in the scope of the plugin. For the plugin it is completely OK to do a documentation update on master that does not result in...

I am working on this feature at the moment. But parallel signing is possible already. Just enable parallel builds using the gradle parameter "--parallel". Or by defining the property org.gradle...

You are right, the `gradle --parallel` does build projects in parallel, but builds one project sequentially. There is however an incubating switch to enable parallel building of tasks within a...

We are using haveged (http://www.irisa.fr/caps/projects/hipsor/) on our CI-Server to ensure /dev/random is always filled with entropy. Since then our builds never stalled.

I must confess I have not worked on this particular issue in some time. On a branch I did try to break up the sign jars task into one task...