pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>xyz.spaceio</groupId>
  6. <artifactId>CustomOreGen</artifactId>
  7. <version>1.3.33-SNAPSHOT</version>
  8. <repositories>
  9. <!-- Spigot repository -->
  10. <repository>
  11. <id>spigot-repo</id>
  12. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  13. </repository>
  14. <!-- CodeMC repository -->
  15. <repository>
  16. <id>codemc-repo</id>
  17. <url>https://repo.codemc.org/repository/maven-public/</url>
  18. </repository>
  19. <!-- PlotSquared repo -->
  20. <repository>
  21. <id>intellectualsites snapshots</id>
  22. <url>https://mvn.intellectualsites.com/content/repositories/snapshots/</url>
  23. </repository>
  24. <repository>
  25. <id>enginehub</id>
  26. <url>https://maven.enginehub.org/repo</url>
  27. </repository>
  28. <!-- Placeholder repository -->
  29. <repository>
  30. <id>placeholderapi</id>
  31. <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  32. </repository>
  33. <!-- USkyBlock repository -->
  34. <repository>
  35. <id>uSkyBlock-mvn-repo</id>
  36. <url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
  37. </repository>
  38. <!-- SuperiorSkyblock repo -->
  39. <repository>
  40. <id>bg-repo</id>
  41. <url>https://repo.bg-software.com/repository/api/</url>
  42. </repository>
  43. <!-- SpaceIO repository -->
  44. <repository>
  45. <id>spaceio-repo</id>
  46. <url>https://repo.spaceio.xyz/repository/maven-public/</url>
  47. </repository>
  48. </repositories>
  49. <dependencies>
  50. <!--Spigot API -->
  51. <dependency>
  52. <groupId>org.spigotmc</groupId>
  53. <artifactId>spigot-api</artifactId>
  54. <version>1.18-R0.1-SNAPSHOT</version>
  55. <scope>provided</scope>
  56. </dependency>
  57. <!-- ASkyBlock -->
  58. <dependency>
  59. <groupId>com.wasteofplastic</groupId>
  60. <artifactId>askyblock</artifactId>
  61. <version>3.0.9.4</version>
  62. </dependency>
  63. <!-- USkyblock -->
  64. <dependency>
  65. <groupId>com.github.rlf</groupId>
  66. <artifactId>uSkyBlock-API</artifactId>
  67. <version>2.6.4</version>
  68. </dependency>
  69. <!-- USkyblock -->
  70. <dependency>
  71. <groupId>pl.islandworld</groupId>
  72. <artifactId>IslandWorld</artifactId>
  73. <version>13.0-SNAPSHOT</version>
  74. <scope>provided</scope>
  75. </dependency>
  76. <!-- BentoBox -->
  77. <dependency>
  78. <groupId>world.bentobox</groupId>
  79. <artifactId>bentobox</artifactId>
  80. <version>1.5.0-SNAPSHOT</version>
  81. <scope>provided</scope>
  82. </dependency>
  83. <!-- BentoBox LevelAddon -->
  84. <dependency>
  85. <groupId>world.bentobox</groupId>
  86. <artifactId>level</artifactId>
  87. <version>1.5.0-SNAPSHOT</version>
  88. <scope>provided</scope>
  89. </dependency>
  90. <!-- SuperiorSkyblock -->
  91. <dependency>
  92. <groupId>com.bgsoftware</groupId>
  93. <artifactId>SuperiorSkyblockAPI</artifactId>
  94. <version>latest</version>
  95. </dependency>
  96. <!-- SpaceSkyblock -->
  97. <dependency>
  98. <groupId>xyz.spaceio.skyblock</groupId>
  99. <artifactId>SpaceSkyblock</artifactId>
  100. <version>1.0.0</version>
  101. <scope>provided</scope>
  102. </dependency>
  103. <!-- PlotSquared -->
  104. <dependency>
  105. <groupId>com.plotsquared</groupId>
  106. <artifactId>PlotSquared-Bukkit</artifactId>
  107. <version>6.1.4</version>
  108. <scope>provided</scope>
  109. </dependency>
  110. <!-- PlotSquared Legacy -->
  111. <dependency>
  112. <groupId>com.plotsquared</groupId>
  113. <artifactId>plotsquared-api</artifactId>
  114. <version>18.12.21-SNAPSHOT</version>
  115. <scope>provided</scope>
  116. </dependency>
  117. <!-- Lands -->
  118. <dependency>
  119. <groupId>com.sk89q.worldedit</groupId>
  120. <artifactId>worldedit-bukkit</artifactId>
  121. <version>7.2.6-SNAPSHOT</version>
  122. <scope>provided</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>me.angeschossen.lands</groupId>
  126. <artifactId>Lands</artifactId>
  127. <version>2.6.6.2-SNAPSHOT</version>
  128. <scope>provided</scope>
  129. </dependency>
  130. <!-- FabledSkyblock -->
  131. <dependency>
  132. <groupId>com.songoda</groupId>
  133. <artifactId>fabledskyblock</artifactId>
  134. <version>2.0.0-SNAPSHOT</version>
  135. <scope>provided</scope>
  136. </dependency>
  137. <!-- Placeholder API -->
  138. <dependency>
  139. <groupId>me.clip</groupId>
  140. <artifactId>placeholderapi</artifactId>
  141. <version>2.10.2</version>
  142. <scope>provided</scope>
  143. </dependency>
  144. <!--SpaceIO Metrics -->
  145. <dependency>
  146. <groupId>de.spaceio</groupId>
  147. <artifactId>SpaceIOMetrics</artifactId>
  148. <version>0.0.2-SNAPSHOT</version>
  149. </dependency>
  150. </dependencies>
  151. <build>
  152. <!-- Uses the properties in this file for plugin.yml and config.yml -->
  153. <resources>
  154. <resource>
  155. <directory>${basedir}/src/main/resources</directory>
  156. <filtering>true</filtering>
  157. <includes>
  158. <include>plugin.yml</include>
  159. <include>config.yml</include>
  160. <include>translations/*</include>
  161. </includes>
  162. </resource>
  163. </resources>
  164. <plugins>
  165. <!-- Sets the Java version to 8 -->
  166. <plugin>
  167. <groupId>org.apache.maven.plugins</groupId>
  168. <artifactId>maven-compiler-plugin</artifactId>
  169. <version>3.1</version>
  170. <configuration>
  171. <source>1.8</source>
  172. <target>1.8</target>
  173. </configuration>
  174. </plugin>
  175. <plugin>
  176. <groupId>org.apache.maven.plugins</groupId>
  177. <artifactId>maven-shade-plugin</artifactId>
  178. <version>3.1.0</version>
  179. <executions>
  180. <execution>
  181. <phase>package</phase>
  182. <goals>
  183. <goal>shade</goal>
  184. </goals>
  185. <configuration>
  186. <artifactSet>
  187. <includes>
  188. <include>de.spaceio:SpaceIOMetrics</include>
  189. </includes>
  190. </artifactSet>
  191. <filters>
  192. <filter>
  193. <artifact>de.spaceio:SpaceIOMetrics</artifact>
  194. <includes>
  195. <include>**</include>
  196. </includes>
  197. </filter>
  198. </filters>
  199. </configuration>
  200. </execution>
  201. </executions>
  202. </plugin>
  203. <!-- Sets the custom JARfile name (Project name without spaces is good) -->
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-jar-plugin</artifactId>
  207. <version>2.4</version>
  208. <configuration>
  209. <outputDirectory>${dir}</outputDirectory>
  210. <finalName>${project.name}-${project.version}</finalName>
  211. </configuration>
  212. </plugin>
  213. </plugins>
  214. </build>
  215. <distributionManagement>
  216. <repository>
  217. <id>spaceio-releases</id>
  218. <name>releases</name>
  219. <url>https://repo.spaceio.xyz/repository/maven-releases/</url>
  220. </repository>
  221. <snapshotRepository>
  222. <id>spaceio-snapshots</id>
  223. <name>snapshots</name>
  224. <url>https://repo.spaceio.xyz/repository/maven-snapshots/</url>
  225. </snapshotRepository>
  226. </distributionManagement>
  227. </project>