Advertisement
javapapo

ear-plugin

May 29th, 2014
8,465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.95 KB | None | 0 0
  1. <build>
  2.    <finalName>sampleapp</finalName>
  3.     <plugins>
  4.        <!--Ear plugin -creating the ear - watch out skinny WARS!-->
  5.         <plugin>
  6.            <groupId>org.apache.maven.plugins</groupId>
  7.             <artifactId>maven-ear-plugin</artifactId>
  8.             <configuration>
  9.               <finalName>sampleapp</finalName>
  10.                 <defaultJavaBundleDir>lib/</defaultJavaBundleDir>
  11.                 <skinnyWars>true</skinnyWars>
  12.                  <modules>
  13.                       <webModule>
  14.                          <groupId>gr.javapapo</groupId>
  15.                          <artifactId>sample-web</artifactId>
  16.                        </webModule>
  17.                         <ejbModule>
  18.                            <groupId>gr.javapapo</groupId>
  19.                            <artifactId>sample-services</artifactId>
  20.                        </ejbModule>
  21.                  </modules>
  22.             </configuration>
  23.          </plugin>
  24.      </plugins>
  25. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement