Bug 1011465 - Unproductized artifacts in jbossws-cxf-client dependency tree when using BOM
Summary: Unproductized artifacts in jbossws-cxf-client dependency tree when using BOM
Keywords:
Status: CLOSED EOL
Alias: None
Product: JBoss Enterprise Application Platform 6
Classification: JBoss
Component: Maven Repository
Version: 6.2.0
Hardware: Unspecified
OS: Unspecified
unspecified
medium
Target Milestone: ---
: ---
Assignee: jboss-set
QA Contact: Nikoleta Hlavickova
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-09-24 10:56 UTC by Rostislav Svoboda
Modified: 2019-08-19 12:46 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2019-08-19 12:46:58 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)

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>


Note You need to log in before you can comment on or make changes to this bug.