]
Martin Švehla reassigned WFLY-10873:
------------------------------------
Assignee: ehsavoie Hugonnet (was: Jason Greene)
Duplicated httpcomponent jars in WF 14.0.0.Beta2
------------------------------------------------
Key: WFLY-10873
URL:
https://issues.jboss.org/browse/WFLY-10873
Project: WildFly
Issue Type: Bug
Components: Server
Affects Versions: 14.0.0.Beta2
Reporter: Martin Švehla
Assignee: ehsavoie Hugonnet
In current Beta2 build, I see duplicated httpclient and httpcore jars. The new
org.apache.httpcomponents.core module was added that introduced this duplication.
in 14.0.0.Beta2:
{code}
$ tree modules/system/layers/base/org/apache/httpcomponents/
modules/system/layers/base/org/apache/httpcomponents/
├── core
│ └── main
│ ├── httpclient-4.5.2.jar
│ ├── httpcore-4.4.4.jar
│ └── module.xml
└── main
├── httpasyncclient-4.1.3.jar
├── httpclient-4.5.2.jar
├── httpcore-4.4.4.jar
├── httpcore-nio-4.4.4.jar
├── httpmime-4.5.2.jar
└── module.xml
{code}
In WF 13.0.0.Final
{code}
$ tree modules/system/layers/base/org/apache/httpcomponents/
modules/system/layers/base/org/apache/httpcomponents/
└── main
├── httpasyncclient-4.1.3.jar
├── httpclient-4.5.2.jar
├── httpcore-4.4.4.jar
├── httpcore-nio-4.4.4.jar
├── httpmime-4.5.2.jar
└── module.xml
{code}