Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.maven.plugins</groupId>
  5. <artifactId>maven-shade-plugin</artifactId>
  6. <version>2.4.1</version>
  7. <executions>
  8. <!-- Ejecutar el goal "shade" en la fase de empaquetado "package" -->
  9. <execution>
  10. <phase>package</phase>
  11. <goals>
  12. <goal>shade</goal>
  13. </goals>
  14. <configuration>
  15. <transformers>
  16. <!-- Se puede especificar la clase que contiene el método "main" para inluirlo en el Manifest
  17. de la aplicación i así hacerla ejecutable
  18. -->
  19. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  20. <mainClass>com.bitsmi.yggdrasil.launcher.MainProgram</mainClass>
  21. </transformer>
  22. </transformers>
  23. </configuration>
  24. </execution>
  25. </executions>
  26. </plugin>
  27. </plugins>
  28. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement