Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Javassist version needs update #41

@slu-it

Description

@slu-it

We are using org.reflections:reflections in order to handle annotations on our fixture classes.
That library has a dependency on org.javassist: javassist in a version that has massive problems with Java 8 classes.

For Example: When a fixture class contains Java 8 Streambased handling of collections, the class will not be read by Reflections and the fixture will therefore not be found!

Since the development of org.reflections:reflections has come to a stand still, this needs to be fixed on our end. Simply enforcing a newer version of org.javassist: javassist works fine.

Just manage the following dependency within our main POM file:

<dependency>
    <groupId>org.javassist</groupId>
    <artifactId>javassist</artifactId>
    <version>3.21.0-GA</version>
</dependency>

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions