pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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.39-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>papermc</id>
  22. <url>https://repo.papermc.io/repository/maven-public/</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. <!-- SpaceIO private repo (storing premium plugins) -->
  49. <repository>
  50. <id>spaceio-private</id>
  51. <url>https://repo.spaceio.xyz/repository/maven-private/</url>
  52. </repository>
  53. </repositories>
  54. <dependencies>
  55. <!--Spigot API -->
  56. <dependency>
  57. <groupId>org.spigotmc</groupId>
  58. <artifactId>spigot-api</artifactId>
  59. <version>1.18-R0.1-SNAPSHOT</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. <!-- ASkyBlock -->
  63. <dependency>
  64. <groupId>com.wasteofplastic</groupId>
  65. <artifactId>askyblock</artifactId>
  66. <version>3.0.9.4</version>
  67. </dependency>
  68. <!-- USkyblock -->
  69. <dependency>
  70. <groupId>com.github.rlf</groupId>
  71. <artifactId>uSkyBlock-API</artifactId>
  72. <version>2.6.4</version>
  73. </dependency>
  74. <!-- USkyblock -->
  75. <dependency>
  76. <groupId>pl.islandworld</groupId>
  77. <artifactId>IslandWorld</artifactId>
  78. <version>13.0-SNAPSHOT</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <!-- BentoBox -->
  82. <dependency>
  83. <groupId>world.bentobox</groupId>
  84. <artifactId>bentobox</artifactId>
  85. <version>1.5.0-SNAPSHOT</version>
  86. <scope>provided</scope>
  87. </dependency>
  88. <!-- BentoBox LevelAddon -->
  89. <dependency>
  90. <groupId>world.bentobox</groupId>
  91. <artifactId>level</artifactId>
  92. <version>1.5.0-SNAPSHOT</version>
  93. <scope>provided</scope>
  94. </dependency>
  95. <!-- SuperiorSkyblock -->
  96. <dependency>
  97. <groupId>com.bgsoftware</groupId>
  98. <artifactId>SuperiorSkyblockAPI</artifactId>
  99. <version>latest</version>
  100. </dependency>
  101. <!-- SpaceSkyblock -->
  102. <dependency>
  103. <groupId>xyz.spaceio.skyblock</groupId>
  104. <artifactId>SpaceSkyblock</artifactId>
  105. <version>1.0.0</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. <!-- PlotSquared -->
  109. <dependency>
  110. <groupId>com.plotsquared</groupId>
  111. <artifactId>PlotSquared-Bukkit</artifactId>
  112. <version>6.8.1</version>
  113. <scope>provided</scope>
  114. </dependency>
  115. <!-- PlotSquared Legacy -->
  116. <dependency>
  117. <groupId>com.plotsquared</groupId>
  118. <artifactId>plotsquared-api</artifactId>
  119. <version>18.12.21-SNAPSHOT</version>
  120. <scope>provided</scope>
  121. </dependency>
  122. <!-- Lands -->
  123. <dependency>
  124. <groupId>com.sk89q.worldedit</groupId>
  125. <artifactId>worldedit-bukkit</artifactId>
  126. <version>7.2.6-SNAPSHOT</version>
  127. <scope>provided</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>me.angeschossen.lands</groupId>
  131. <artifactId>Lands</artifactId>
  132. <version>2.6.6.2-SNAPSHOT</version>
  133. <scope>provided</scope>
  134. </dependency>
  135. <!-- FabledSkyblock, in spaceio-private -->
  136. <dependency>
  137. <groupId>com.songoda</groupId>
  138. <artifactId>fabledskyblock</artifactId>
  139. <version>3.0.0-b7-SNAPSHOT</version>
  140. <scope>provided</scope>
  141. </dependency>
  142. <!-- Placeholder API -->
  143. <dependency>
  144. <groupId>me.clip</groupId>
  145. <artifactId>placeholderapi</artifactId>
  146. <version>2.10.2</version>
  147. <scope>provided</scope>
  148. </dependency>
  149. <!--SpaceIO Metrics -->
  150. <dependency>
  151. <groupId>xyz.spaceio</groupId>
  152. <artifactId>Metrics</artifactId>
  153. <version>0.08-SNAPSHOT</version>
  154. </dependency>
  155. </dependencies>
  156. <build>
  157. <!-- Uses the properties in this file for plugin.yml and config.yml -->
  158. <resources>
  159. <resource>
  160. <directory>${basedir}/src/main/resources</directory>
  161. <filtering>true</filtering>
  162. <includes>
  163. <include>plugin.yml</include>
  164. <include>config.yml</include>
  165. <include>translations/*</include>
  166. </includes>
  167. </resource>
  168. </resources>
  169. <plugins>
  170. <!-- Sets the Java version to 8 -->
  171. <plugin>
  172. <groupId>org.apache.maven.plugins</groupId>
  173. <artifactId>maven-compiler-plugin</artifactId>
  174. <version>3.1</version>
  175. <configuration>
  176. <source>1.8</source>
  177. <target>1.8</target>
  178. </configuration>
  179. </plugin>
  180. <plugin>
  181. <groupId>org.apache.maven.plugins</groupId>
  182. <artifactId>maven-shade-plugin</artifactId>
  183. <version>3.1.0</version>
  184. <executions>
  185. <execution>
  186. <phase>package</phase>
  187. <goals>
  188. <goal>shade</goal>
  189. </goals>
  190. <configuration>
  191. <artifactSet>
  192. <includes>
  193. <include>xyz.spaceio:Metrics</include>
  194. </includes>
  195. </artifactSet>
  196. </configuration>
  197. </execution>
  198. </executions>
  199. </plugin>
  200. <!-- Sets the custom JARfile name (Project name without spaces is good) -->
  201. <plugin>
  202. <groupId>org.apache.maven.plugins</groupId>
  203. <artifactId>maven-jar-plugin</artifactId>
  204. <version>2.4</version>
  205. <configuration>
  206. <outputDirectory>${dir}</outputDirectory>
  207. <finalName>${project.name}-${project.version}</finalName>
  208. </configuration>
  209. </plugin>
  210. </plugins>
  211. </build>
  212. <distributionManagement>
  213. <repository>
  214. <id>spaceio-releases</id>
  215. <name>releases</name>
  216. <url>https://repo.spaceio.xyz/repository/maven-releases/</url>
  217. </repository>
  218. <snapshotRepository>
  219. <id>spaceio-snapshots</id>
  220. <name>snapshots</name>
  221. <url>https://repo.spaceio.xyz/repository/maven-snapshots/</url>
  222. </snapshotRepository>
  223. </distributionManagement>
  224. </project>