pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>CustomOreGen</groupId>
  6. <artifactId>CustomOreGen</artifactId>
  7. <version>1.2.5-SNAPSHOT</version>
  8. <repositories>
  9. <repository>
  10. <id>spigot-repo</id>
  11. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  12. </repository>
  13. <repository>
  14. <id>bintray-tastybento-maven-repo</id>
  15. <name>bintray</name>
  16. <url>http://dl.bintray.com/tastybento/maven-repo</url>
  17. </repository>
  18. <repository>
  19. <id>uSkyBlock-mvn-repo</id>
  20. <url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
  21. <snapshots>
  22. <enabled>true</enabled>
  23. <updatePolicy>always</updatePolicy>
  24. </snapshots>
  25. </repository>
  26. </repositories>
  27. <dependencies>
  28. <!--Spigot API -->
  29. <dependency>
  30. <groupId>org.spigotmc</groupId>
  31. <artifactId>spigot-api</artifactId>
  32. <version>1.13.1-R0.1-SNAPSHOT</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. <!-- Bukkit API -->
  36. <dependency>
  37. <groupId>org.bukkit</groupId>
  38. <artifactId>craftbukkit</artifactId>
  39. <version>1.13.1-R0.1-SNAPSHOT</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.wasteofplastic</groupId>
  44. <artifactId>askyblock</artifactId>
  45. <version>3.0.9</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.wasteofplastic</groupId>
  49. <artifactId>acidisland</artifactId>
  50. <version>3.0.9</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.rlf</groupId>
  54. <artifactId>uSkyBlock-API</artifactId>
  55. <version>2.6.4</version>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <!-- Uses the properties in this file for plugin.yml and config.yml -->
  60. <resources>
  61. <resource>
  62. <directory>${basedir}/src/main/resources</directory>
  63. <filtering>true</filtering>
  64. <includes>
  65. <include>plugin.yml</include>
  66. <include>config.yml</include>
  67. <include>translations/*</include>
  68. </includes>
  69. </resource>
  70. </resources>
  71. <plugins>
  72. <!-- Sets the Java version to 8 -->
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-shade-plugin</artifactId>
  76. <version>3.1.0</version>
  77. <executions>
  78. <execution>
  79. <phase>package</phase>
  80. <goals>
  81. <goal>shade</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. <!-- Sets the custom JARfile name (Project name without spaces is good) -->
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-jar-plugin</artifactId>
  90. <version>2.4</version>
  91. <configuration>
  92. <outputDirectory>${dir}</outputDirectory>
  93. <finalName>${project.name}</finalName>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>