hello,
it's easier to deploy your ear directly into jboss directory, if this
is what you ar elookiin gfor..

<plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-ear-plugin</artifactId>
               <configuration>
                   <modules>


<ejbModule>
                           <groupId>ExpenseControl</groupId>
                           <artifactId>ejbs</artifactId>
                           <bundleFileName>
                               ejb3-app-1.0-SNAPSHOT.jar
                           </bundleFileName>
                       </ejbModule>
                       <webModule>
                           <groupId>ExpenseControl</groupId>
                           <artifactId>web</artifactId>
                           <bundleFileName>
                               ejb3-web.war
                           </bundleFileName>
                       </webModule>
                     </modules>
                                       <outputDirectory>${deploy.directory
}</outputDirectory>*

Reply via email to