tomasbjerre / git-changelog-maven-plugin

Maven plugin that can generate a changelog, or releasenotes, from git repository
Other
78 stars 35 forks source link

Issue 24 extendedVariables supported in maven cli #25

Closed vhochstein closed 3 years ago

vhochstein commented 3 years ago

Travis is complaining for java 8: java.lang.UnsupportedClassVersionError: com/google/googlejavaformat/java/FormatterException has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0

Do you have an idea why ?

tomasbjerre commented 3 years ago

I thin it is: https://github.com/tomasbjerre/git-changelog-maven-plugin/blob/master/pom.xml#L45

Should be:

        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.source>1.8</maven.compiler.source>
vhochstein commented 3 years ago

ah ok, you are still supporting java 7. I ve used for each loop which was introduced with java 8. Do you prefer to increase to java 8 ? or should I use a standard for loop ?

tomasbjerre commented 3 years ago

Change it to Java 8 =)

vhochstein commented 3 years ago

tried out both options and both fail. :-( travis still complaints about incorrect class version in that fmt plugin

tomasbjerre commented 3 years ago

I can take care of it later. You can just leave it like this.

Den fre 15 jan. 2021 11:35Volker Hochstein notifications@github.com skrev:

tried out both options and both fail. :-( travis still complaints about incorrect class version in that fmt plugin

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/tomasbjerre/git-changelog-maven-plugin/pull/25#issuecomment-760816750, or unsubscribe https://github.com/notifications/unsubscribe-auth/AADLKE3CF5KZT6IHOUYXCMDS2AK73ANCNFSM4WDWE5NA .