Bug 1016027

Summary: Docs Enhancement: Usage of BOM to manage transitive dependencies
Product: [JBoss] JBoss Enterprise Application Platform 6 Reporter: Nikoleta Hlavickova <nziakova>
Component: DocumentationAssignee: sgilda
Status: CLOSED CURRENTRELEASE QA Contact: Russell Dickenson <rdickens>
Severity: urgent Docs Contact:
Priority: unspecified    
Version: 6.2.0CC: rsvoboda, sgilda, twells
Target Milestone: GAKeywords: Documentation, Triaged
Target Release: EAP 6.2.1   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-02-24 20:14:20 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 Nikoleta Hlavickova 2013-10-07 10:49:12 UTC
This information should be included in Maven Guide in Development Guide:
http://documentation-devel.engineering.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/6.2/html/Development_Guide/chap-Maven_Guide.html

Comment 1 Nikoleta Hlavickova 2013-10-07 10:51:53 UTC
See comment #12

Comment 2 Rostislav Svoboda 2013-10-08 12:37:19 UTC
Russell, please contact Paul Gier for details. He should be able to provide text draft for docs too.

https://bugzilla.redhat.com/show_bug.cgi?id=1011918#c12

This change is very important for customer and it must be properly documented. Otherwise they won't use productized dependencies.

Comment 3 Paul Gier 2013-12-11 15:59:51 UTC
This was already done for eap 6.2.0 in the "Manage Project Dependencies" section.  However, I noticed a bug in the docs.

The part that says:
  <dependencies>
    ...
    <dependency>
      <groupId>org.jboss.bom.eap</groupId>
      <artifactId>eap6-supported-artifacts</artifactId>
      <version>6.2.0.GA</version>
    </dependency>
    ...
  </dependencies>

Should be:
  <dependencies>
    ...
    <dependency>
      <groupId>org.jboss.bom.eap</groupId>
      <artifactId>eap6-supported-artifacts</artifactId>
      <version>6.2.0.GA</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
    ...
  </dependencies>

The internal wiki now contains this correction: https://mojo.redhat.com/docs/DOC-188472

Comment 4 sgilda 2013-12-12 12:44:52 UTC
Related bug was also fixed: https://bugzilla.redhat.com/show_bug.cgi?id=1040569

Per Paul Gier, this issue is resolved. Marking it modified.

Comment 6 Nikoleta Hlavickova 2014-02-24 10:56:24 UTC
Verified