Closed arkadioz closed 10 months ago
@tomasbjerre do you know if there is something I can do by my side to fix it? I saw your commit in their library about the engine being null, but im not sure if I have to add something in my code to make that engine not null? thanks for all your help
Perhaps if you add Nashorn as a dependency.
<build>
<plugins>
<plugin>
<groupId>se.bjurr.gitchangelog</groupId>
<artifactId>git-changelog-maven-plugin</artifactId>
<version>${changelog}</version>
<dependencies>
<dependency>
<groupId>org.openjdk.nashorn</groupId>
<artifactId>nashorn-core</artifactId>
<version>15.4</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
That dependency solved it, thanks, why did you not add it on the example I mentioned at the start of this issue? I think it should be there in the example if it is needed, is my suggestion :), thanks again
I am trying to add a custom helper but even if I copy paste the config provided as example here https://github.com/tomasbjerre/git-changelog-maven-plugin?tab=readme-ov-file#example---custom-helpers I get the following error:
Not sure if im missing something that is ment to be obvious like maybe a dependency, but hopefully @tomasbjerre or someone can point me out in the right direction, here is my plugin config and also the javascript helper I was trying to add just for starting to learn: