Advertisement
cj89898_2

Untitled

Jun 22nd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 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. <groupId>net.cjservers.cjMultiServer</groupId>
  5. <artifactId>cjMultiServer</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>cjMultiServer</name>
  8. <build>
  9. <sourceDirectory>src</sourceDirectory>
  10. <plugins>
  11. <plugin>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <version>3.5.1</version>
  14. <configuration>
  15. <source>1.8</source>
  16. <target>1.8</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <repositories>
  22. <repository>
  23. <id>md-5</id>
  24. <url>http://repo.md-5.net/content/repositories/snapshots/</url>
  25. </repository>
  26. </repositories>
  27. <dependencies>
  28. <dependency>
  29. <groupId>redis.clients</groupId>
  30. <artifactId>jedis</artifactId>
  31. <version>2.9.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <version>1.16.16</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.spigotmc</groupId>
  41. <artifactId>spigot</artifactId>
  42. <version>1.7.10-SNAPSHOT-b1643</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement