Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>me.harry0198.instantstructures</groupId>
  4. <artifactId>instantstructures</artifactId>
  5. <version>1.0-SNAPSHOT</version>
  6. <name>InstantStructures</name>
  7. <description>Click and spawn structures anywhere</description>
  8.  
  9.  
  10. <repositories>
  11. <repository>
  12. <id>spigot-repo</id>
  13. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  14. </repository>
  15. <!--Bungeecord Repo-->
  16. <!--Only include if using the Spigot API dependency-->
  17. <repository>
  18. <id>bungeecord-repo</id>
  19. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  20. </repository>
  21.  
  22. <repository>
  23. <id>vault-repo</id>
  24. <url>http://nexus.hc.to/content/repositories/pub_releases</url>
  25. </repository>
  26.  
  27. <repository>
  28. <id>worldedit-core</id>
  29. <url>http://maven.sk89q.com/repo/</url>
  30. </repository>
  31.  
  32.  
  33. </repositories>
  34. <dependencies>
  35. <!--Spigot API-->
  36. <!--You only need one of the two, don't put both. Spigot is recommended.-->
  37. <dependency>
  38. <groupId>org.spigotmc</groupId>
  39. <artifactId>spigot-api</artifactId>
  40. <version>1.13.2-R0.1-SNAPSHOT</version>
  41. <scope>provided</scope>
  42. </dependency>
  43.  
  44. <dependency>
  45. <groupId>com.sk89q.worldedit</groupId>
  46. <artifactId>worldedit-core</artifactId>
  47. <version>7.0.0-SNAPSHOT</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.sk89q.worldedit</groupId>
  52. <artifactId>worldedit-bukkit</artifactId>
  53. <version>7.0.0-SNAPSHOT</version>
  54. <scope>provided</scope>
  55. </dependency>
  56.  
  57.  
  58. <dependency>
  59. <groupId>net.milkbowl.vault</groupId>
  60. <artifactId>VaultAPI</artifactId>
  61. <version>1.7</version>
  62. <scope>provided</scope>
  63. </dependency>
  64.  
  65. </dependencies>
  66.  
  67.  
  68.  
  69. <build>
  70. <finalName>InstantStructures</finalName>
  71. <sourceDirectory>src/main/java</sourceDirectory>
  72. <resources>
  73. <resource>
  74. <targetPath>.</targetPath>
  75. <filtering>true</filtering>
  76. <directory>${basedir}/src/main/resources/</directory>
  77. <includes>
  78. <include>plugin.yml</include>
  79. </includes>
  80. </resource>
  81. </resources>
  82. <plugins>
  83. <plugin>
  84. <artifactId>maven-compiler-plugin</artifactId>
  85. <version>2.3.2</version>
  86. <configuration>
  87. <source>1.8</source>
  88. <target>1.8</target>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93.  
  94. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement