Tomas Bjerre

Results 365 comments of Tomas Bjerre

I can see it also now. Perhaps it is SLF4J: https://github.com/spotbugs/spotbugs-gradle-plugin/issues/11 Would be nice to shaddow the dependencies and package a fat jar of git-changelog-lib but I have been experiencing...

This works for me: ```groovy buildscript { repositories { maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath("com.google.guava:guava:27.0.1-jre") classpath("gradle.plugin.se.bjurr.gitchangelog:git-changelog-gradle-plugin:1.64") { exclude group:"org.slf4j" exclude group:"com.google.guava" } } } plugins { //...

I have tried to package a fat jar with git-changelog-lib. There might still be a branch with that in the lib. The problem was with JGit. I think it was...

I pushed a branch with this here: https://github.com/tomasbjerre/git-changelog-lib/commits/feature/fat-jar And a branch using it here: https://github.com/tomasbjerre/git-changelog-gradle-plugin/commits/feature/fat-jar When I do `./gradlew install` in `git-changelog-lib` and `./build.sh` in `git-changelog-gradle-plugin` I get problem with...

Perhaps the very old Gradle version. Or something wrong in the template. Have a look at the examples and try to find the issue: https://github.com/tomasbjerre/git-changelog-gradle-plugin/blob/master/git-changelog-gradle-plugin-example/build.gradle

I am afraid it may slow things down if done for all commits, always.

Can you repeat this in an open repository, perhaps on Github?

A public repository. That I can access.

Those commits are not available in that repository: https://github.com/Acolasz/git-changelog-maven-plugin/commit/a0babb6073c30d2965bf33b8e97868e0bd55f24f

Perhaps something wrong with my build script. I would try running this in the library: ``` ./gradlew clean build publishToMavenLocal -Pversion=custom-SNAPSHOT ``` And change this plugin to use version `custom-SNAPSHOT`.