pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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.21-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. <!-- Tastybento repository -->
  15. <repository>
  16. <id>bintray-tastybento-maven-repo</id>
  17. <name>bintray</name>
  18. <url>http://dl.bintray.com/tastybento/maven-repo</url>
  19. </repository>
  20. <!-- USkyBlock repository -->
  21. <repository>
  22. <id>uSkyBlock-mvn-repo</id>
  23. <url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
  24. <snapshots>
  25. <enabled>true</enabled>
  26. <updatePolicy>always</updatePolicy>
  27. </snapshots>
  28. </repository>
  29. <!-- CodeMC repository -->
  30. <repository>
  31. <id>codemc-repo</id>
  32. <url>https://repo.codemc.org/repository/maven-public/</url>
  33. </repository>
  34. <!-- Placeholder repository -->
  35. <repository>
  36. <id>placeholderapi</id>
  37. <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  38. </repository>
  39. <!-- SpaceIO repository -->
  40. <repository>
  41. <id>spaceio-snapshots</id>
  42. <url>https://hub.spaceio.xyz/repository/maven-snapshots/</url>
  43. </repository>
  44. <!-- SpaceIO private repository -->
  45. <repository>
  46. <id>private-snapshots</id>
  47. <url>https://hub.spaceio.xyz/repository/private-snapshots/</url>
  48. </repository>
  49. </repositories>
  50. <dependencies>
  51. <!--Spigot API -->
  52. <dependency>
  53. <groupId>org.spigotmc</groupId>
  54. <artifactId>spigot-api</artifactId>
  55. <version>1.14.4-R0.1-SNAPSHOT</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <!-- Bukkit API -->
  59. <dependency>
  60. <groupId>org.bukkit</groupId>
  61. <artifactId>craftbukkit</artifactId>
  62. <version>1.14.4-R0.1-SNAPSHOT</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. <!-- ASkyBlock -->
  66. <dependency>
  67. <groupId>com.wasteofplastic</groupId>
  68. <artifactId>askyblock</artifactId>
  69. <version>3.0.9</version>
  70. </dependency>
  71. <!-- AcidIsland -->
  72. <dependency>
  73. <groupId>com.wasteofplastic</groupId>
  74. <artifactId>acidisland</artifactId>
  75. <version>3.0.9</version>
  76. </dependency>
  77. <!-- USkyblock -->
  78. <dependency>
  79. <groupId>com.github.rlf</groupId>
  80. <artifactId>uSkyBlock-API</artifactId>
  81. <version>2.6.4</version>
  82. </dependency>
  83. <!-- USkyblock -->
  84. <dependency>
  85. <groupId>pl.islandworld</groupId>
  86. <artifactId>IslandWorld</artifactId>
  87. <version>13.0-SNAPSHOT</version>
  88. <scope>provided</scope>
  89. </dependency>
  90. <!-- BentoBox -->
  91. <dependency>
  92. <groupId>world.bentobox</groupId>
  93. <artifactId>bentobox</artifactId>
  94. <version>1.5.0-SNAPSHOT</version>
  95. <scope>provided</scope>
  96. </dependency>
  97. <!-- BentoBox LevelAddon -->
  98. <dependency>
  99. <groupId>world.bentobox</groupId>
  100. <artifactId>level</artifactId>
  101. <version>1.5.0-SNAPSHOT</version>
  102. <scope>provided</scope>
  103. </dependency>
  104. <!-- SuperiorSkyblock -->
  105. <dependency>
  106. <groupId>com.bgsoftware</groupId>
  107. <artifactId>SuperiorSkyblock</artifactId>
  108. <version>0.1.2-20190711.010640-1</version>
  109. <scope>provided</scope>
  110. </dependency>
  111. <!-- SpaceSkyblock -->
  112. <dependency>
  113. <groupId>xyz.spaceio.skyblock</groupId>
  114. <artifactId>SpaceSkyblock</artifactId>
  115. <version>1.0.0</version>
  116. <scope>provided</scope>
  117. </dependency>
  118. <!-- PlotSquared -->
  119. <dependency>
  120. <groupId>com.github.intellectualsites.plotsquared</groupId>
  121. <artifactId>PlotSquared-API</artifactId>
  122. <version>4.369-SNAPSHOT</version>
  123. </dependency>
  124. <!-- Lands -->
  125. <dependency>
  126. <groupId>me.angeschossen.lands</groupId>
  127. <artifactId>Lands</artifactId>
  128. <version>2.6.6.2-SNAPSHOT</version>
  129. <scope>provided</scope>
  130. </dependency>
  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.1-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-shade-plugin</artifactId>
  169. <version>3.1.0</version>
  170. <executions>
  171. <execution>
  172. <phase>package</phase>
  173. <goals>
  174. <goal>shade</goal>
  175. </goals>
  176. <configuration>
  177. <artifactSet>
  178. <includes>
  179. <include>de.spaceio:SpaceIOMetrics</include>
  180. </includes>
  181. </artifactSet>
  182. <filters>
  183. <filter>
  184. <artifact>de.spaceio:SpaceIOMetrics</artifact>
  185. <includes>
  186. <include>**</include>
  187. </includes>
  188. </filter>
  189. </filters>
  190. </configuration>
  191. </execution>
  192. </executions>
  193. </plugin>
  194. <!-- Sets the custom JARfile name (Project name without spaces is good) -->
  195. <plugin>
  196. <groupId>org.apache.maven.plugins</groupId>
  197. <artifactId>maven-jar-plugin</artifactId>
  198. <version>2.4</version>
  199. <configuration>
  200. <outputDirectory>${dir}</outputDirectory>
  201. <finalName>${project.name}</finalName>
  202. </configuration>
  203. </plugin>
  204. </plugins>
  205. </build>
  206. <distributionManagement>
  207. <repository>
  208. <id>spaceio-releases</id>
  209. <name>releases</name>
  210. <url>https://hub.spaceio.xyz/repository/maven-releases/</url>
  211. </repository>
  212. <snapshotRepository>
  213. <id>spaceio-snapshots</id>
  214. <name>snapshots</name>
  215. <url>https://hub.spaceio.xyz/repository/maven-snapshots/</url>
  216. </snapshotRepository>
  217. </distributionManagement>
  218. </project>