pom.xml 6.8 KB

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