-
Bug
-
Resolution: Done
-
Major
-
6.2.2.Final
-
None
Both resteasy.core and resteasy.core.spi provide the package "org.jboss.resteasy.concurrent"
See
- https://github.com/resteasy/resteasy/tree/main/resteasy-core/src/main/java/org/jboss/resteasy/concurrent
- https://github.com/resteasy/resteasy/tree/main/resteasy-core-spi/src/main/java/org/jboss/resteasy/concurrent
When using resteasy in a Java modularized app, the result is a "split package" error.
Example:
error: module org.apache.commons.lang3 reads package org.jboss.resteasy.concurrent from both resteasy.core.spi and resteasy.core
Would it be possible to rename one package or to move all the classes of that package into one module?
(I did not create a full MWE, but have a small API there: https://github.com/koppor/jabref/pull/628)