Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <build>
  2.  
  3. <plugins>
  4. <plugin>
  5. <artifactId>maven-assembly-plugin</artifactId>
  6. <version>2.6</version>
  7. <configuration>
  8. <descriptorRefs>
  9. <descriptorRef>jar-with-dependencies</descriptorRef>
  10. </descriptorRefs>
  11. <archive>
  12. <manifest>
  13. <mainClass>main.Kmeans.App</mainClass>
  14. <addClasspath>true</addClasspath>
  15. <classpathPrefix>${project.build.finalName}.res/</classpathPrefix>
  16. </manifest>
  17. </archive>
  18. </configuration>
  19. <executions>
  20. <execution>
  21. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  22. <phase>package</phase> <!-- bind to the packaging phase -->
  23. <goals>
  24. <goal>single</goal>
  25. </goals>
  26. </execution>
  27. </executions>
  28. </plugin>
  29.  
  30.  
  31. </plugins>
  32.  
  33. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement