[richfaces-issues] [JBoss JIRA] Commented: (RF-11179) Upgrade jboss-as-controller-client in Showcase pom to Final

Brian Leathem (JIRA) jira-events at lists.jboss.org
Thu Sep 29 01:40:26 EDT 2011


    [ https://issues.jboss.org/browse/RF-11179?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12631182#comment-12631182 ] 

Brian Leathem commented on RF-11179:
------------------------------------

Rather than bundling the jar in the showcase war, and trying to track the JBoss-AS release with the latest jar, we can simply add a manifest.mf entry to expose the AS 7 module to the client.

The line to include in the manifest.mf file is:
{code:title=MANIFEST.MF}Dependencies: org.jboss.as.controller-client{code}

This can be done with the maven-war-plugin as follows:

{code:title=pom.xml snippet}
...
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest />
                        <manifestEntries>
                            <Dependencies>org.jboss.as.controller-client</Dependencies>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
{code}

> Upgrade jboss-as-controller-client in Showcase pom to Final
> -----------------------------------------------------------
>
>                 Key: RF-11179
>                 URL: https://issues.jboss.org/browse/RF-11179
>             Project: RichFaces
>          Issue Type: Task
>      Security Level: Public(Everyone can see) 
>          Components: showcase
>    Affects Versions: 4.1.0.Milestone1
>            Reporter: Pavol Pitonak
>            Assignee: Lukáš Fryč
>            Priority: Trivial
>             Fix For: 4.1.0.Milestone3
>
>
> Update jboss-as-controller-client to 7.0.0.Final in Showcase pom.xml.
> {code:xml}
> <dependency>
>     <groupId>org.jboss.as</groupId>
>     <artifactId>jboss-as-controller-client</artifactId>
>     <version>7.0.0.Final</version>
>     <scope>provided</scope>
> </dependency>
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       



More information about the richfaces-issues mailing list