Bug 950334
| Summary: | Ticket Monster: richfaces-bom version does not align with WFK | ||
|---|---|---|---|
| Product: | [Retired] JBoss Enterprise WFK Platform 2 | Reporter: | Karel Piwko <kpiwko> |
| Component: | TicketMonster | Assignee: | Vineet Reynolds <vpereira> |
| Status: | CLOSED INSUFFICIENT_DATA | QA Contact: | Tomas Repel <trepel> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 2.2.0 | CC: | bleathem, bsutter, kpiwko, mnovotny, myarboro, pmuir, ppenicka, rruss, trepel |
| Target Milestone: | --- | ||
| Target Release: | 2.4.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | ticket-monster | ||
| Fixed In Version: | Doc Type: | Known Issue | |
| Doc Text: |
The RichFaces plugin for JBoss Forge does not use the version of RichFaces distributed with Red Hat JBoss Web Framework Kit 2.3.0. Consequently, the Administration section of the TicketMonster example uses RichFaces 4.2.2. To work around the issue, perform the following changes in the project's pom.xml file:
Override the dependency version by including the following snippet:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.bom</groupId>
<artifactId>jboss-javaee-6.0-with-richfaces</artifactId>
<type>pom</type>
<scope>import</scope>
<version>1.0.4.Final-redhat-wfk-2</version>
</dependency>
</dependencies>
</dependencyManagement>
Remove the following snippet:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<version>4.2.2.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Remove the hard-coded versions specified with RichFaces artifacts:
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
<!-- delete this line --><version>4.2.2.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-impl</artifactId>
<!-- delete this line --><version>4.2.2.Final</version>
</dependency>
As a result of the workaround, the implementation of the Administration section will use the correct version of RichFaces.
|
Story Points: | --- |
| Clone Of: | 929102 | Environment: | |
| Last Closed: | 2013-07-17 20:46:54 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
Karel Piwko
2013-04-10 06:33:54 UTC
*** Bug 950333 has been marked as a duplicate of this bug. *** Edited docs text. Will be inserted into the 2.2.0 RN book later today. Edited release note and inserted it into the 2.2.0 RN book. Docs stage URL: https://documentation-devel.engineering.redhat.com/docs/en-US/JBoss_Web_Framework_Kit/2.2/html-single/2.2.0_Release_Notes/index.html Build: JBoss_Web_Framework_Kit-2.2.0_Release_Notes-2.2-en-US-0-23 This is not done in upstream, so we would defer it Edited doc text for WFK 2.3.0. Migrated to JIRA. |