Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 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>com.dungeons</groupId>
  6. <artifactId>dungeons</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8.  
  9.  
  10.  
  11. <repositories>
  12.  
  13. <repository>
  14. <id>spigot-repo</id>
  15. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  16. </repository>
  17. <repository>
  18. <id>enginehub-maven</id>
  19. <url>http://maven.enginehub.org/repo/</url>
  20. </repository>
  21. <repository>
  22. <id>fawe-repo</id>
  23. <url>https://ci.athion.net/job/FastAsyncWorldEdit-1.13/ws/mvn</url>
  24. </repository>
  25. </repositories>
  26. <dependencies>
  27. <!--Spigot API -->
  28. <!--You only need one of the two, don't put both. Spigot is recommended. -->
  29. <dependency>
  30. <groupId>org.spigotmc</groupId>
  31. <artifactId>spigot-api</artifactId>
  32. <version>1.13.2-R0.1-SNAPSHOT</version>
  33. <scope>provided</scope>
  34. </dependency>
  35.  
  36. <dependency>
  37. <groupId>com.google.code.gson</groupId>
  38. <artifactId>gson</artifactId>
  39. <version>2.8.5</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.boydti</groupId>
  43. <artifactId>fawe-api</artifactId>
  44. <version>latest</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.sk89q.worldedit</groupId>
  48. <artifactId>worldedit-bukkit</artifactId>
  49. <version>7.0.0-SNAPSHOT</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. </dependencies>
  53. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement