Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.apache.maven.plugins</groupId>
  3. <artifactId>maven-shade-plugin</artifactId>
  4. <version>3.2.1</version>
  5. <executions>
  6. <execution>
  7. <phase>package</phase>
  8. <goals>
  9. <goal>shade</goal>
  10. </goals>
  11. </execution>
  12. </executions>
  13. <configuration>
  14. <createDependencyReducedPom>false</createDependencyReducedPom>
  15. <artifactSet>
  16. <includes>
  17. <include>de.leonhard:LightningStorage*</include>
  18. </includes>
  19. </artifactSet>
  20. </relocations>
  21. </configuration>
  22. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement