Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 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.  
  5. <groupId>pl.shakee.azhc</groupId>
  6. <artifactId>core</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>core</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.slf4j</groupId>
  20. <artifactId>slf4j-api</artifactId>
  21. <version>1.7.21</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>3.8.1</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.zaxxer</groupId>
  31. <artifactId>HikariCP-java7</artifactId>
  32. <version>2.4.13</version>
  33. </dependency>
  34.  
  35. <dependency>
  36. <groupId>org.spigotmc</groupId>
  37. <artifactId>spigot-api</artifactId>
  38. <version>1.8.8-R0.1-SNAPSHOT</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. </dependencies>
  42.  
  43. <repositories>
  44. <repository>
  45. <id>dmulloy2-repo</id>
  46. <url>http://repo.dmulloy2.net/content/groups/public/</url>
  47. </repository>
  48. <repository>
  49. <id>spigot-repo</id>
  50. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  51. </repository>
  52. </repositories>
  53.  
  54. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement