-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
None
-
None
-
None
Wildfly-elytron jar is shaded with all wildfly elytron modules + jboss-logging, but it keeps the shaded classes in jar in its dependency chain which makes duplicated classes in dependency tree when using the wildfly-elytron in maven project.
Avoiding duplicates would effectively need to add exclusion dependency to wildfly-elytron like:
<dependency> <groupId>org.wildlfy.security</groupId> <artifactId>wildfly-elytron</artifactId> <version>some-version</version> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency>
- blocks
-
WFCORE-6401 Upgrade to an Elytron release with ELY-1971 fixed
- Open
- causes
-
WFLY-17832 org.apache.sshd module take precedence over classloader from application war
- Open
-
JBPM-10173 Kie-Server usage of wildfly-elytron in different deployments
- Resolved