Bug 1011465

Summary: Unproductized artifacts in jbossws-cxf-client dependency tree when using BOM
Product: [JBoss] JBoss Enterprise Application Platform 6 Reporter: Rostislav Svoboda <rsvoboda>
Component: Maven RepositoryAssignee: jboss-set
Status: CLOSED EOL QA Contact: Nikoleta Hlavickova <nziakova>
Severity: medium Docs Contact:
Priority: unspecified    
Version: 6.2.0CC: bsutter, ttarrant
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2019-08-19 12:46:58 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Rostislav Svoboda 2013-09-24 10:56:36 UTC
There are several unproductized artifacts in jbossws-cxf-client dependency tree when using BOM

   |  |  \- com.sun:tools:jar:1.6:system
   |  \- commons-logging:commons-logging:jar:1.1.1:compile
   |  +- xml-apis:xml-apis:jar:1.3.04:runtime
   |  +- org.slf4j:jul-to-slf4j:jar:1.6.4:compile
   |  \- org.slf4j:log4j-over-slf4j:jar:1.6.4:compile
   |  \- net.sf.ehcache:ehcache-core:jar:2.5.1:compile
   +- stax:stax-api:jar:1.0.1:compile
   +- com.sun.xml.fastinfoset:FastInfoset:jar:1.2.12:compile
   +- log4j:log4j:jar:1.2.16:compile

I know that log4j won't be productized, what about other dependencies.

Do we have list of intentional public artifacts available in maven repo zip?

Testing POM :

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <name>JBoss Web Services - Client test</name>

  <groupId>org.jboss.ws.cxf</groupId>
  <artifactId>jbossws-cxf-client-using-BOM-test</artifactId>
  <version>1.0.0.Final</version>

  <properties>
      <version.eap6-supported-artifacts>6.2.0.Beta1</version.eap6-supported-artifacts>
  </properties>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.jboss.bom</groupId>
        <artifactId>eap6-supported-artifacts</artifactId>
        <version>\${version.eap6-supported-artifacts}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>org.jboss.ws.cxf</groupId>
      <artifactId>jbossws-cxf-client</artifactId>
    </dependency>
  </dependencies>

</project>