Guest User

Untitled

a guest
Jun 30th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>groupId</groupId>
  8. <artifactId>Newcraft</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <repositories>
  12.  
  13. <repository>
  14. <id>fanciful-mvn-repo</id>
  15. <url>http://repo.franga2000.com/artifactory/public</url>
  16. </repository>
  17.  
  18. <repository>
  19. <id>spigot-repo</id>
  20. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  21. </repository>
  22.  
  23. <repository>
  24. <id>vault-repo</id>
  25. <url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
  26. </repository>
  27.  
  28. </repositories>
  29.  
  30. <dependencies>
  31.  
  32. <!--Fanciful API-->
  33. <dependency>
  34. <groupId>mkremins</groupId>
  35. <artifactId>fanciful</artifactId>
  36. <version>0.3.1</version>
  37. </dependency>
  38.  
  39. <!--Spigot-API-->
  40. <dependency>
  41. <groupId>org.spigotmc</groupId>
  42. <artifactId>spigot-api</artifactId>
  43. <version>1.8.7-R0.1-SNAPSHOT</version>
  44. </dependency>
  45.  
  46. <!--Bukkit API-->
  47. <dependency>
  48. <groupId>org.bukkit</groupId>
  49. <artifactId>bukkit</artifactId>
  50. <version>1.8.7-R0.1-SNAPSHOT</version>
  51. </dependency>
  52.  
  53. <!--Vault API-->
  54. <dependency>
  55. <groupId>net.milkbowl.vault</groupId>
  56. <artifactId>VaultAPI</artifactId>
  57. <version>1.5</version>
  58. </dependency>
  59.  
  60. <!--Spigot-->
  61. <dependency>
  62. <groupId>org.spigotmc</groupId>
  63. <artifactId>spigot</artifactId>
  64. <version>1.8</version>
  65. <scope>system</scope>
  66. <systemPath>${pom.basedir}/lib/spigot.jar</systemPath>
  67. </dependency>
  68.  
  69. <!--Holographic Displays API-->
  70. <dependency>
  71. <groupId>com.gmail.filoghost.holographicdisplays.api</groupId>
  72. <artifactId>holographicdisplays</artifactId>
  73. <version>2.1.3</version>
  74. <scope>system</scope>
  75. <systemPath>${pom.basedir}/lib/HolographicDisplaysAPI_v2.1.3.jar</systemPath>
  76. </dependency>
  77.  
  78. </dependencies>
  79.  
  80. </project>
Advertisement
Add Comment
Please, Sign In to add comment