You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Karl Heinz Marbaise (JIRA)" <ji...@apache.org> on 2018/11/05 17:23:00 UTC

[jira] [Assigned] (MEAR-271) Support lookup-name in resource-ref section

     [ https://issues.apache.org/jira/browse/MEAR-271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Karl Heinz Marbaise reassigned MEAR-271:
----------------------------------------

    Assignee: Karl Heinz Marbaise

> Support lookup-name in resource-ref section
> -------------------------------------------
>
>                 Key: MEAR-271
>                 URL: https://issues.apache.org/jira/browse/MEAR-271
>             Project: Maven Ear Plugin
>          Issue Type: Wish
>    Affects Versions: 3.0.1
>            Reporter: Lonzak
>            Assignee: Karl Heinz Marbaise
>            Priority: Major
>             Fix For: 3.0.2
>
>
> It would be nice if the 'lookup-name' would be supported in the resource-ref section to support JNDI lookup. Currently, this tag is ignored in the generated application.xml. (+description would also be nice)
> Example:
> The pom.xml snippet
> {code:xml}
> <configuration>
>  <resourceRefs>
>        <resource-ref>
>     <description>ExampleDS</description>
>     <res-ref-name>jdbc/ExampleDS</res-ref-name>
>     <res-type>javax.sql.DataSource</res-type>
>     <res-auth>Container</res-auth>
>     <lookup-name>java:jboss/datasources/ExampleDS</lookup-name>
>   </resource-ref>
>    </resourceRefs>
> </configuration>
> {code}
> should generate application.xml with
> {code:xml}
>   <resource-ref>
>     <description>ExampleDS</description>
>     <res-ref-name>jdbc/ExampleDS</res-ref-name>
>     <res-type>javax.sql.DataSource</res-type>
>     <res-auth>Container</res-auth>
>     <lookup-name>java:jboss/datasources/ExampleDS</lookup-name>
>   </resource-ref>          
> {code}
> This is from a solution from the jboss guys.
> [JBoss solution|https://i.imgur.com/3XDxQNJ.png]



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)