leonelhl

maven plugin for compile jar v2

Jun 27th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.86 KB | None | 0 0
  1. <build>
  2. <plugins>
  3.     <plugin>
  4.         <artifactId>maven-assembly-plugin</artifactId>
  5.         <version>3.0.0</version>
  6.         <configuration>
  7.         <descriptorRefs>
  8.                 <descriptorRef>jar-with-dependencies</descriptorRef>
  9.             </descriptorRefs>
  10.             <archive>
  11.                 <manifest>
  12.                     <mainClass>cl.clave.App</mainClass>
  13.                 </manifest>
  14.             </archive>
  15.         </configuration>
  16.         <executions>
  17.             <execution>
  18.                 <id>make-assembly</id>
  19.                 <!-- this is used for inheritance merges -->
  20.                 <phase>package</phase>
  21.                 <!-- bind to the packaging phase -->
  22.                 <goals>
  23.                     <goal>single</goal>
  24.                 </goals>
  25.             </execution>
  26.         </executions>
  27.     </plugin>
  28. </plugins>
  29. </build>
Advertisement
Add Comment
Please, Sign In to add comment