Guest User

Untitled

a guest
Mar 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.maven.plugins</groupId>
  5. <artifactId>maven-source-plugin</artifactId>
  6. <executions>
  7. <execution>
  8. <id>attach-sources</id>
  9. <phase>verify</phase>
  10. <goals>
  11. <goal>jar</goal>
  12. </goals>
  13. </execution>
  14. </executions>
  15. </plugin>
  16. </plugins>
  17. </build>
  18.  
  19. <profiles>
  20. <profile>
  21. <id>release</id>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-source-plugin</artifactId>
  27. <executions>
  28. <execution>
  29. <goals>
  30. <goal>jar</goal>
  31. </goals>
  32. </execution>
  33. </executions>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </profile>
  38. </profiles>
  39.  
  40. <plugin>
  41. <artifactId>maven-assembly-plugin</artifactId>
  42. <configuration>
  43. <descriptorRefs>
  44. <descriptorRef>jar-with-dependencies</descriptorRef>
  45. </descriptorRefs>
  46. </configuration>
  47. </plugin>
Add Comment
Please, Sign In to add comment