Qballl

Untitled

Dec 2nd, 2024
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.09 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>io.wildernesstp</groupId>
  8. <artifactId>WildernessTP</artifactId>
  9. <version>4.4.5-SNAPSHOT</version>
  10.  
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. </properties>
  16.  
  17. <developers>
  18. <developer>
  19. <name>Quintin VanBooven ("Qball")</name>
  20. </developer>
  21. </developers>
  22.  
  23. <contributors>
  24. <contributor>
  25. <name>Ronald Bunk ("Azoraqua")</name>
  26. <email>[email protected]</email>
  27. <url>https://azoraqua.com</url>
  28. </contributor>
  29. </contributors>
  30.  
  31. <build>
  32. <defaultGoal>clean package</defaultGoal>
  33.  
  34. <resources>
  35. <resource>
  36. <directory>src/main/resources</directory>
  37. <filtering>true</filtering>
  38. </resource>
  39.  
  40. <resource>
  41. <directory>.</directory>
  42.  
  43. <includes>
  44. <include>LICENSE.md</include>
  45. <include>README.md</include>
  46. </includes>
  47. </resource>
  48. </resources>
  49.  
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <version>3.8.1</version>
  55. <configuration>
  56. <encoding>${project.build.sourceEncoding}</encoding>
  57. <source>${maven.compiler.source}</source>
  58. <target>${maven.compiler.target}</target>
  59. </configuration>
  60. </plugin>
  61.  
  62.  
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-shade-plugin</artifactId>
  66. <version>3.4.1</version>
  67.  
  68. <configuration>
  69. <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml
  70. </dependencyReducedPomLocation>
  71. <finalName>WildernessTp</finalName>
  72. <minimizeJar>true</minimizeJar>
  73. <relocations>
  74. <relocation>
  75. <pattern>io.papermc.lib</pattern>
  76. <shadedPattern>io.wildernesstp.paperlib</shadedPattern>
  77. </relocation>
  78. </relocations>
  79. <filters>
  80. <filter>
  81. <artifact>*:*</artifact>
  82.  
  83. <excludes>
  84. <exclude>META-INF/*.SF</exclude>
  85. <exclude>META-INF/*.DSA</exclude>
  86. <exclude>META-INF/*.RSA</exclude>
  87. </excludes>
  88. </filter>
  89. </filters>
  90. </configuration>
  91.  
  92. <executions>
  93. <execution>
  94. <phase>package</phase>
  95.  
  96. <goals>
  97. <goal>shade</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104.  
  105. <repositories>
  106. <repository>
  107. <id>glaremasters repo</id>
  108. <url>https://repo.glaremasters.me/repository/towny/</url>
  109. </repository>
  110.  
  111. <repository>
  112. <id>papermc-repo</id>
  113. <url>https://papermc.io/repo/repository/maven-public/</url>
  114. </repository>
  115.  
  116. <repository>
  117. <id>spigotmc-repo</id>
  118. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  119. </repository>
  120.  
  121. <repository>
  122. <id>jitpack.io</id>
  123. <url>https://jitpack.io</url>
  124. </repository>
  125.  
  126. <repository>
  127. <id>codemc-repo</id>
  128. <url>https://repo.codemc.org/repository/maven-public/</url>
  129. </repository>
  130. </repositories>
  131.  
  132. <dependencies>
  133. <dependency>
  134. <groupId>org.spigotmc</groupId>
  135. <artifactId>spigot-api</artifactId>
  136. <version>1.19.4-R0.1-SNAPSHOT</version>
  137. <scope>provided</scope>
  138.  
  139. <exclusions>
  140. <exclusion>
  141. <groupId>com.google.code.gson</groupId>
  142. <artifactId>gson</artifactId>
  143. </exclusion>
  144.  
  145. <exclusion>
  146. <groupId>commons-lang</groupId>
  147. <artifactId>commons-lang</artifactId>
  148. </exclusion>
  149.  
  150. <exclusion>
  151. <groupId>com.google.guava</groupId>
  152. <artifactId>guava</artifactId>
  153. </exclusion>
  154.  
  155. <exclusion>
  156. <groupId>org.yaml</groupId>
  157. <artifactId>snakeyaml</artifactId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161.  
  162. <dependency>
  163. <groupId>io.papermc</groupId>
  164. <artifactId>paperlib</artifactId>
  165. <version>1.0.2</version>
  166. <scope>compile</scope>
  167. </dependency>
  168.  
  169. <dependency>
  170. <groupId>com.github.MilkBowl</groupId>
  171. <artifactId>VaultAPI</artifactId>
  172. <version>1.7</version>
  173. <scope>provided</scope>
  174. </dependency>
  175.  
  176. <!-- Dependencies for hooks. -->
  177. <dependency>
  178. <groupId>com.bekvon.bukkit</groupId>
  179. <artifactId>Residence</artifactId>
  180. <version>4.6.1.4</version>
  181. <scope>provided</scope>
  182. </dependency>
  183.  
  184. <dependency>
  185. <groupId>com.github.angeschossen</groupId>
  186. <artifactId>LandsAPI</artifactId>
  187. <version>5.2.5</version>
  188. <scope>provided</scope>
  189. </dependency>
  190.  
  191. <dependency>
  192. <groupId>com.massivecraft</groupId>
  193. <artifactId>FactionsUUID</artifactId>
  194. <version>1.6.9.5-U0.1.21</version>
  195. <scope>provided</scope>
  196. </dependency>
  197.  
  198. <dependency>
  199. <groupId>com.massivecraft.factions</groupId>
  200. <artifactId>Factions</artifactId>
  201. <version>2.13.2-SNAPSHOT</version>
  202. <scope>provided</scope>
  203. </dependency>
  204.  
  205. <dependency>
  206. <groupId>com.massivecraft.massivecore</groupId>
  207. <artifactId>MassiveCore</artifactId>
  208. <version>2.13.2-SNAPSHOT</version>
  209. <scope>provided</scope>
  210. </dependency>
  211.  
  212. <dependency>
  213. <groupId>us.forseth11</groupId>
  214. <artifactId>Feudal</artifactId>
  215. <version>1.7.3</version>
  216. <scope>provided</scope>
  217. </dependency>
  218.  
  219.  
  220. <dependency>
  221. <groupId>com.songoda.kingdoms</groupId>
  222. <artifactId>FabledKingdoms</artifactId>
  223. <version>1.2.6</version>
  224. <scope>provided</scope>
  225. </dependency>
  226.  
  227. <dependency>
  228. <groupId>com.palmergames.bukkit.towny</groupId>
  229. <artifactId>towny</artifactId>
  230. <version>0.101.0.1</version>
  231. <scope>provided</scope>
  232. </dependency>
  233.  
  234. <!-- <dependency>
  235. <groupId>com.github.GriefPrevention</groupId>
  236. <artifactId>GriefPrevention</artifactId>
  237. <version>16.18.2</version>
  238. <scope>provided</scope>
  239. </dependency> -->
  240.  
  241. <dependency>
  242. <groupId>org.codemc.worldguardwrapper</groupId>
  243. <artifactId>worldguardwrapper</artifactId>
  244. <version>1.2.0-SNAPSHOT</version>
  245. </dependency>
  246. </dependencies>
  247. </project>
  248.  
Advertisement
Add Comment
Please, Sign In to add comment