Advertisement
Guest User

Untitled

a guest
Mar 19th, 2021
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.maven.plugins</groupId>
  5. <artifactId>maven-compiler-plugin</artifactId>
  6. <version>3.8.0</version>
  7. <configuration>
  8. <source>${java.version}</source>
  9. <target>${java.version}</target>
  10. </configuration>
  11. </plugin>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-shade-plugin</artifactId>
  15. <version>3.2.4</version>
  16. <executions>
  17. <execution>
  18. <phase>package</phase>
  19. <goals>
  20. <goal>shade</goal>
  21. </goals>
  22. <configuration>
  23. <createDependencyReducedPom>false</createDependencyReducedPom>
  24. </configuration>
  25. </execution>
  26. </executions>
  27. </plugin>
  28. </plugins>
  29. <resources>
  30. <resource>
  31. <directory>src/main/resources</directory>
  32. <filtering>true</filtering>
  33. </resource>
  34. </resources>
  35. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement