Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <version>0.0.1-SNAPSHOT</version>
  5.  
  6. <!-- Global Properties -->
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. <build.number>Unknown</build.number>
  10. </properties>
  11.  
  12. <!-- Repositories --><repositories>
  13. <repository>
  14. <id>spigot-repo</id>
  15. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/
  16. </url>
  17. </repository>
  18. </repositories>
  19. <repository>
  20. <id>sk89q-repo</id>
  21. <url>http://maven.sk89q.com/repo/</url>
  22. </repository>
  23. </repositories>
  24.  
  25. <!-- Dependencies -->
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.spigotmc</groupId>
  29. <artifactId>spigot-api</artifactId>
  30. <version>1.8.8-R0.1-SNAPSHOT</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.sk89q</groupId>
  35. <artifactId>worldedit</artifactId>
  36. <version>LATEST</version>
  37. <type>jar</type>
  38. <scope>provided</scope>
  39. </dependency>
  40. </dependencies>
  41.  
  42. <!-- Build Information -->
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.0</version>
  49. <configuration>
  50. <source>1.6</source>
  51. <target>1.6</target>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. <groupId>de.bananaco</groupId>
  57. <artifactId>WallsPopulator</artifactId>
  58. <name>WallsPopulator</name>
  59. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement