Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Are there plans to release animal-sniffer 1.24? #268

Open
armandino opened this issue Dec 17, 2023 · 0 comments
Open

Are there plans to release animal-sniffer 1.24? #268

armandino opened this issue Dec 17, 2023 · 0 comments
Assignees

Comments

@armandino
Copy link

The latest animal-sniffer version 1.23 has a dependency on ASM 9.4 which does not support Java 21. As a result, animal-sniffer fails if it encounters Java 21 classes.

Currently, the workaround is to specify the latest ASM dependency for the plugin:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>animal-sniffer-maven-plugin</artifactId>
    <version>1.23</version>
    <dependencies>
        <dependency>
            <groupId>org.ow2.asm</groupId>
            <artifactId>asm</artifactId>
            <version>9.6</version>
        </dependency>
    </dependencies>
    ...
</plugin>

I noticed the master branch already depends on the latest ASM version. It would be great if it was published as a new release to add support for Java 21.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants