Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 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>Bot</groupId>
  8. <artifactId>Bot</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <repositories>
  11. <repository>
  12. <id>central</id>
  13. <name>bintray</name>
  14. <url>http://jcenter.bintray.com</url>
  15. </repository>
  16. <repository>
  17. <id>notfab</id>
  18. <url>http://nexus.notfab.net/content/repositories/JDA3</url>
  19. </repository>
  20. <repository>
  21. <id>central</id>
  22. <name>bintray</name>
  23. <url>http://jcenter.bintray.com</url>
  24. </repository>
  25. </repositories>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>fr.bmartel</groupId>
  30. <artifactId>jspeedtest</artifactId>
  31. <version>1.30.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.moandjiezana.toml</groupId>
  35. <artifactId>toml4j</artifactId>
  36. <version>0.7.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sedmelluq</groupId>
  40. <artifactId>lavaplayer</artifactId>
  41. <version>1.2.34</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpclient</artifactId>
  46. <version>4.4</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.koraktor</groupId>
  50. <artifactId>steam-condenser</artifactId>
  51. <version>1.3.9</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>net.dv8tion</groupId>
  55. <artifactId>JDA</artifactId>
  56. <version>3.0.0_157</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-lang3</artifactId>
  61. <version>3.5</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.mashape.unirest</groupId>
  65. <artifactId>unirest-java</artifactId>
  66. <version>1.4.9</version>
  67. </dependency>
  68.  
  69. </dependencies>
  70.  
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <configuration>
  77. <source>1.8</source>
  78. <target>1.8</target>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83.  
  84.  
  85. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement