Kloudy

Untitled

Jun 18th, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 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>com.antarescraft.kloudy.concertpartyeffects</groupId>
  4. <artifactId>ConcertPartyEffects</artifactId>
  5. <version>1.0</version>
  6.  
  7. <repositories>
  8. <repository>
  9. <id>spigot-repo</id>
  10. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  11. </repository>
  12. <repository>
  13. <id>ProtocolLib</id>
  14. <url>http://ci.dmulloy2.net/job/ProtocolLib/293/maven-repository/repository/com/comphenix/protocol/ProtocolLib/</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <!--Spigot API-->
  19. <dependency>
  20. <groupId>org.spigotmc</groupId>
  21. <artifactId>spigot-api</artifactId>
  22. <version>1.9.2-R0.1-SNAPSHOT</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.comphenix.protocol</groupId>
  27. <artifactId>ProtocolLib</artifactId>
  28. <version>4.0.2-SNAPSHOT</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. </dependencies>
  32.  
  33. <build>
  34. <sourceDirectory>src</sourceDirectory>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>3.3</version>
  39. <configuration>
  40. <source>1.7</source>
  41. <target>1.7</target>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>
Advertisement
Add Comment
Please, Sign In to add comment