Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  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>RunicQuests</groupId>
  6. <artifactId>RunicQuests</artifactId>
  7. <version>1.0</version>
  8. <name>RunicQuests</name>
  9. <description>Runic Realms Quest Plugin</description>
  10. <build>
  11. <sourceDirectory>src</sourceDirectory>
  12. <plugins>
  13. <plugin>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>3.8.0</version>
  16. <configuration>
  17. <source>1.8</source>
  18. <target>1.8</target>
  19. </configuration>
  20. </plugin>
  21. <plugin>
  22. <artifactId>maven-resources-plugin</artifactId>
  23. <version>3.0.2</version>
  24. <executions>
  25. <execution>
  26. <id>copy-files-on-build</id>
  27. <phase>package</phase>
  28. <goals>
  29. <goal>copy-resources</goal>
  30. </goals>
  31. <configuration>
  32. <outputDirectory>${fileOutput}</outputDirectory>
  33. <resources>
  34. <resource>
  35. <directory>${project.build.directory}</directory>
  36. <include>${project.artifactId}-${project.version}.jar</include>
  37. <filtering>false</filtering>
  38. </resource>
  39. </resources>
  40. </configuration>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. <resources>
  46. <resource>
  47. <directory>src/main/resources</directory>
  48. <filtering>true</filtering>
  49. </resource>
  50. </resources>
  51. </build>
  52. <repositories>
  53. <!-- Spigot Repo -->
  54. <repository>
  55. <id>spigotmc-repo</id>
  56. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  57. </repository>
  58. <!-- Paper Repo -->
  59. <repository>
  60. <id>papermc</id>
  61. <url>https://papermc.io/repo/repository/maven-public/</url>
  62. </repository>
  63. <!-- PlaceholderAPI Repo -->
  64. <repository>
  65. <id>placeholderapi</id>
  66. <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  67. </repository>
  68. <!-- Citizens Repo -->
  69. <repository>
  70. <id>everything</id>
  71. <url>http://repo.citizensnpcs.co/</url>
  72. </repository>
  73. </repositories>
  74. <dependencies>
  75. <!-- Spigot API -->
  76. <dependency>
  77. <groupId>org.spigotmc</groupId>
  78. <artifactId>spigot-api</artifactId>
  79. <version>1.13.2-R0.1-SNAPSHOT</version>
  80. <scope>provided</scope>
  81. </dependency>
  82. <!-- CraftBukkit -->
  83. <dependency>
  84. <groupId>org.bukkit</groupId>
  85. <artifactId>craftbukkit</artifactId>
  86. <version>1.13.2-R0.1-SNAPSHOT</version>
  87. <scope>system</scope>
  88. <systemPath>${project.basedir}/lib/craftbukkit-1.13.2.jar</systemPath>
  89. </dependency>
  90. <!-- MythicMobs -->
  91. <dependency>
  92. <groupId>net.elseland.xikage</groupId>
  93. <artifactId>mythicmobs</artifactId>
  94. <version>4.5.5</version>
  95. <scope>system</scope>
  96. <systemPath>${project.basedir}/lib/MythicMobs-4.5.5.jar</systemPath>
  97. </dependency>
  98. <!-- Paper API -->
  99. <dependency>
  100. <groupId>com.destroystokyo.paper</groupId>
  101. <artifactId>paper-api</artifactId>
  102. <version>1.13.2-R0.1-SNAPSHOT</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. <!-- Placeholder API -->
  106. <dependency>
  107. <groupId>me.clip</groupId>
  108. <artifactId>placeholderapi</artifactId>
  109. <version>2.9.2</version>
  110. <scope>provided</scope>
  111. </dependency>
  112. <!-- CitizensAPI -->
  113. <dependency>
  114. <groupId>net.citizensnpcs</groupId>
  115. <artifactId>citizens</artifactId>
  116. <version>2.0.25-SNAPSHOT</version>
  117. <type>jar</type>
  118. <scope>provided</scope>
  119. </dependency>
  120. </dependencies>
  121. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement