Maybe_c

Untitled

Jun 23rd, 2025
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.maven.plugins</groupId>
  5. <artifactId>maven-shade-plugin</artifactId>
  6. <version>3.6.0</version>
  7. <configuration>
  8. <createDependencyReducedPom>false</createDependencyReducedPom>
  9. <!-- 过滤掉所有 META-INF/maven 下的内容 -->
  10. <filters>
  11. <filter>
  12. <!-- *:* 表示所有 artifact -->
  13. <artifact>com.xericker:ArenaLegends</artifact>
  14. <excludes>
  15. <exclude>META-INF/maven/**</exclude>
  16. </excludes>
  17. </filter>
  18. </filters>
  19. <relocations>
  20. <relocation>
  21. <pattern>fr.mrmicky.fastboard</pattern>
  22. <!-- Replace 'com.yourpackage' with the package of your plugin -->
  23. <shadedPattern>com.xericker.arenalegends.core.board.handler</shadedPattern>
  24. </relocation>
  25. </relocations>
  26. </configuration>
  27. <executions>
  28. <execution>
  29. <phase>package</phase>
  30. <goals>
  31. <goal>shade</goal>
  32. </goals>
  33. </execution>
  34. </executions>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.14.0</version>
  40. <configuration>
  41. <source>${java.version}</source>
  42. <target>${java.version}</target>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. <resources>
  47. <resource>
  48. <directory>src/main/resources</directory>
  49. <filtering>true</filtering>
  50. </resource>
  51. </resources>
  52. </build>
Advertisement
Add Comment
Please, Sign In to add comment