You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Lonzak (JIRA)" <ji...@apache.org> on 2018/09/04 13:53:01 UTC

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

Lonzak created MEAR-271:
---------------------------

             Summary: 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


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)