Advertisement
broken-arrow

Untitled

Dec 19th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>fr.berzaak</groupId>
  8. <artifactId>core</artifactId>
  9. <name>Core</name>
  10. <version>1.0</version>
  11.  
  12. <properties>
  13. <main.class>fr.berzaak.core.Core</main.class>
  14. <foundation.version>5.11.2</foundation.version>
  15. <java.version>1.8</java.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18.  
  19. <repositories>
  20. <repository>
  21. <id>spigotmc-repo</id>
  22. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  23. </repository>
  24. <repository>
  25. <id>jitpack.io</id>
  26. <url>https://jitpack.io</url>
  27. </repository>
  28. <repository>
  29. <id>sonatype</id>
  30. <url>https://oss.sonatype.org/content/groups/public/</url>
  31. </repository>
  32. </repositories>
  33.  
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.spigotmc</groupId>
  37. <artifactId>spigot-api</artifactId>
  38. <version>1.8.8-R0.1-SNAPSHOT</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.kangarko</groupId>
  43. <artifactId>Foundation</artifactId>
  44. <version>${foundation.version}</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.github.SaberLLC</groupId>
  49. <artifactId>Saber-Factions</artifactId>
  50. <version>2.4.0-RC</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.broken1arrow</groupId>
  54. <artifactId>RBG-Gradients</artifactId>
  55. <version>0.09</version>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-compiler-plugin</artifactId>
  63. <version>3.8.1</version>
  64. <configuration>
  65. <source>${java.version}</source>
  66. <target>${java.version}</target>
  67. </configuration>
  68. </plugin>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-shade-plugin</artifactId>
  72. <version>3.2.1</version>
  73. <executions>
  74. <execution>
  75. <phase>package</phase>
  76. <goals>
  77. <goal>shade</goal>
  78. </goals>
  79. <configuration>
  80. <createDependencyReducedPom>false</createDependencyReducedPom>
  81. <finalName>${project.name}-${project.version}</finalName>
  82. <artifactSet>
  83. <includes>
  84. <include>org.mineacademy:Game*</include>
  85. <include>com.github.kangarko:Foundation*</include>
  86. <include>com.github.broken1arrow:*</include>
  87. </includes>
  88. <excludes>
  89. <exclude>org.mineacademy:GameAPI*</exclude>
  90. </excludes>
  91. </artifactSet>
  92. <relocations>
  93. <relocation>
  94. <pattern>org.broken.lib</pattern>
  95. <shadedPattern>${project.groupId}.${project.artifactId}.rbglib</shadedPattern>
  96. </relocation>
  97. <relocation>
  98. <pattern>org.mineacademy</pattern>
  99. <shadedPattern>${project.groupId}.${project.artifactId}.lib</shadedPattern>
  100. <excludes>
  101. <exclude>org.mineacademy.${project.artifactId}.*</exclude>
  102. <exclude>org.mineacademy.gameapi.*</exclude>
  103. <exclude>org.mineacademy.boss.*</exclude>
  104. <exclude>org.mineacademy.worldeditbridge.*</exclude>
  105. </excludes>
  106. </relocation>
  107. </relocations>
  108. </configuration>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. </plugins>
  113. <resources>
  114. <resource>
  115. <directory>src/main/resources</directory>
  116. <filtering>true</filtering>
  117. </resource>
  118. </resources>
  119. </build>
  120.  
  121. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement