Tomas Bjerre

Results 365 comments of Tomas Bjerre

What does "Gradle Project sync failures" mean?

I don't know what that is. Perhaps try: ``` * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log...

That does not happen to me. I also cannot see how this plugin can cause that. ```bash ✔ ~/workspace/Fresh-Android-Project [implement-git-changelog {origin/implement-git-changelog}|✚ 2…1] 19:01 $ ./gradlew assemble --stacktrace To honour the...

Transitive. And probably from jgit, I will check later.

Perhaps you dont have a `master` branch? Or just one commit on `master`... You may try specifying references explicitely: https://github.com/tomasbjerre/git-changelog-gradle-plugin/blob/master/git-changelog-gradle-plugin-example/build.gradle#L30 Or try to reproduce the problem in an open repository...

Yes: https://github.com/tomasbjerre/git-changelog-lib/blob/master/src/main/java/se/bjurr/gitchangelog/api/GitChangelogApiConstants.java#L11 And you can change it like this: https://github.com/tomasbjerre/git-changelog-gradle-plugin/blob/master/git-changelog-gradle-plugin-example/build.gradle#L220

I think this should be filed on the `Handlebars.java` library that this tool uses. I found an issue but it does not contain any information: https://github.com/jknack/handlebars.java/issues/808

Can you repeat that in an open project? And provide a link to that.

You added it twice: https://github.com/ccrvincent/changelog-spotbugs/blob/master/changelog-spotbugs/build.gradle#L15 and: https://github.com/ccrvincent/changelog-spotbugs/blob/master/changelog-spotbugs/build.gradle#L24 And you should probably use the plugin DSL way of doing things: ``` plugins { id "se.bjurr.gitchangelog.git-changelog-gradle-plugin" version "1.64" } ``` That way,...