Unable to set some properties for jboss-app.xml
-----------------------------------------------

                 Key: MEAR-105
                 URL: http://jira.codehaus.org/browse/MEAR-105
             Project: Maven 2.x Ear Plugin
          Issue Type: Bug
    Affects Versions: 2.3.2
         Environment: JBoss 5.0.0.GA, JBoss 5.0.1.GA
            Reporter: Evgeny Mandrikov


Look at http://www.jboss.org/j2ee/dtd/jboss-app_5_0.dtd

Missing:
* module-order
* security-domain
* unauthenticated-principal

So, for example:
{code:xml}
<plugin>
    <artifactId>maven-ear-plugin</artifactId>                
    <configuration>
        <jboss>
            <version>5</version>
            <module-order>strict</module-order>
            <security-domain>java:/jaas/twist</security-domain>
            <unauthenticated-principal>guest</unauthenticated-principal>
        </jboss>
    </configuration>
</plugin>
{code}
there is no effect. And generated jboss-app.xml looks like:
{code:xml}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jboss-app PUBLIC
        "-//JBoss//DTD Java EE Application 5.0//EN"
        "http://www.jboss.org/j2ee/dtd/jboss-app_5_0.dtd";>
<jboss-app/>
{code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to