Advertisement
Guest User

pom.xml

a guest
Jul 12th, 2015
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 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>me.phineas</groupId>
  8. <artifactId>HiveTest</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <repositories>
  11. <repository>
  12. <id>bungeecord-repo</id>
  13. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  14. </repository>
  15. </repositories>
  16.  
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <version>3.1</version>
  23. <configuration>
  24. <source>1.7</source>
  25. <target>1.7</target>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30.  
  31. <dependencies>
  32. <dependency>
  33. <groupId>net.md-5</groupId>
  34. <artifactId>bungeecord-api</artifactId>
  35. <version>1.8-SNAPSHOT</version>
  36. <type>jar</type>
  37. <scope>provided</scope>
  38. </dependency>
  39. </dependencies>
  40. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement