Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 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>org.example</groupId>
  8. <artifactId>Test</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <repositories>
  12. <repository>
  13. <id>spigot-repo</id>
  14. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  15. </repository>
  16. </repositories>
  17.  
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <configuration>
  24. <source>8</source>
  25. <target>8</target>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30.  
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.spigotmc</groupId>
  34. <artifactId>spigot-api</artifactId>
  35. <version>1.8.8-R0.1-SNAPSHOT</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. </dependencies>
  39. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement