git-changelog-lib: execution stuck
Hi. I tried this basic config on my project.
<plugin>
<groupId>se.bjurr.gitchangelog</groupId>
<artifactId>git-changelog-maven-plugin</artifactId>
<version>1.64</version>
<executions>
<execution>
<id>GenerateGitChangelog</id>
<phase>generate-sources</phase>
<goals>
<goal>git-changelog</goal>
</goals>
<configuration>
<templateContent>
<![CDATA[
# Changelog
Changelog of My Project.
]]>
</templateContent>
<skip>false</skip>
</configuration>
</execution>
</executions>
</plugin>
When I run mvn clean install -e -X the output goes on ad infinitum.
...
[main] [DEBUG] Work left: 12892
[main] [DEBUG] Work left: 13001
[main] [DEBUG] Work left: 13106
[main] [DEBUG] Work left: 13226
[main] [DEBUG] Work left: 13323
[main] [DEBUG] Work left: 13401
[main] [DEBUG] Work left: 13480
[main] [DEBUG] Work left: 13790
[main] [DEBUG] Work left: 13763
[main] [DEBUG] Work left: 13830
[main] [DEBUG] Work left: 13901
[main] [DEBUG] Work left: 13986
...
About this issue
- Original URL
- State: open
- Created 4 years ago
- Comments: 16 (6 by maintainers)
Commits related to this issue
- fix: avoiding stuck execution (refs #95) — committed to tomasbjerre/git-changelog-lib by tomasbjerre a year ago
I guess Maven does not pick up same configuration with those two commands, I don’t know.
I found the issue while debugging a test case in this library where I point at your repository.