Advertisement
Guest User

Pom.xml, test list bug

a guest
Apr 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 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>A group id</groupId>
  4. <artifactId>A plugin name</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <name>A plugin name</name>
  7. <description>To watch your thing back</description>
  8. <build>
  9. <plugins>
  10. <plugin>
  11. <groupId>org.apache.maven.plugins</groupId>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <configuration>
  14. <source>1.8</source>
  15. <target>1.8</target>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <repositories>
  21. <repository>
  22. <id>spigot-repo</id>
  23. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
  24. </repository>
  25. </repositories>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.bukkit</groupId>
  29. <artifactId>bukkit</artifactId>
  30. <version>1.12-R0.1-SNAPSHOT</version><!--change this value depending on the version or use LATEST-->
  31. <type>jar</type>
  32. <scope>provided</scope>
  33. </dependency>
  34. </dependencies>
  35. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement