Guest User

Untitled

a guest
Sep 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <artifactId>maven-assembly-plugin</artifactId>
  5. <version>2.2.1</version>
  6. <executions>
  7. <execution>
  8. <phase>package</phase>
  9. <goals>
  10. <goal>single</goal>
  11. </goals>
  12. </execution>
  13. </executions>
  14. <configuration>
  15. <descriptors>
  16. <descriptor>${basedir}/assembly.xml</descriptor>
  17. </descriptors>
  18. </configuration>
  19. </plugin>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-jar-plugin</artifactId>
  23. <version>2.3.1</version>
  24. <configuration>
  25. <archive>
  26. <manifest>
  27. <addClasspath>true</addClasspath>
  28. <classpathPrefix>lib/</classpathPrefix>
  29. <mainClass>Main</mainClass>
  30. </manifest>
  31. </archive>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
Add Comment
Please, Sign In to add comment