Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.29 KB | None | 0 0
  1.  
  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. <groupId>de.enzacode</groupId>
  7. <artifactId>EnZa</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>EnZa</name>
  11. <url>http://maven.apache.org</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <repositories>
  18. <repository>
  19. <name>strezz-central</name>
  20. <id>strezz</id>
  21. <url>https://github.com/Strezzed/strezz-central/raw/repository</url>
  22. </repository>
  23. <repository>
  24. <id>jcenter</id>
  25. <url>https://jcenter.bintray.com</url>
  26. <name>jcenter-bintray</name>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <dependency>
  31. <groupId>com.mojang</groupId>
  32. <artifactId>patchy</artifactId>
  33. <version>1.1</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>oshi-project</groupId>
  37. <artifactId>oshi-core</artifactId>
  38. <version>1.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>net.java.dev.jna</groupId>
  42. <artifactId>jna</artifactId>
  43. <version>4.4.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>net.java.dev.jna</groupId>
  47. <artifactId>platform</artifactId>
  48. <version>3.4.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.t9t.minecraft-rcon-client</groupId>
  52. <artifactId>minecraft-rcon-client</artifactId>
  53. <version>1.0.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.ibm.icu</groupId>
  57. <artifactId>icu4j</artifactId>
  58. <version>51.2</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>net.sf.jopt-simple</groupId>
  62. <artifactId>jopt-simple</artifactId>
  63. <version>5.0.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.paulscode</groupId>
  67. <artifactId>codecjorbis</artifactId>
  68. <version>20101023</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.paulscode</groupId>
  72. <artifactId>codecwav</artifactId>
  73. <version>20101023</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.paulscode</groupId>
  77. <artifactId>libraryjavasound</artifactId>
  78. <version>20101123</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.paulscode</groupId>
  82. <artifactId>librarylwjglopenal</artifactId>
  83. <version>20100824</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.lwjgl.lwjgl</groupId>
  87. <artifactId>lwjgl_util</artifactId>
  88. <version>2.9.3</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.paulscode</groupId>
  92. <artifactId>soundsystem</artifactId>
  93. <version>20120107</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>io.netty</groupId>
  97. <artifactId>netty-all</artifactId>
  98. <version>4.1.9.Final</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.google.guava</groupId>
  102. <artifactId>guava</artifactId>
  103. <version>21.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.commons</groupId>
  107. <artifactId>commons-lang3</artifactId>
  108. <version>3.5</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>commons-io</groupId>
  112. <artifactId>commons-io</artifactId>
  113. <version>2.5</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>commons-codec</groupId>
  117. <artifactId>commons-codec</artifactId>
  118. <version>1.10</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>net.java.jinput</groupId>
  122. <artifactId>jinput</artifactId>
  123. <version>2.0.5</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>net.java.jutils</groupId>
  127. <artifactId>jutils</artifactId>
  128. <version>1.0.0</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.google.code.gson</groupId>
  132. <artifactId>gson</artifactId>
  133. <version>2.8.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.commons</groupId>
  137. <artifactId>commons-compress</artifactId>
  138. <version>1.8.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.httpcomponents</groupId>
  142. <artifactId>httpclient</artifactId>
  143. <version>4.3.2</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-logging</groupId>
  147. <artifactId>commons-logging</artifactId>
  148. <version>1.1.3</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.httpcomponents</groupId>
  152. <artifactId>httpcore</artifactId>
  153. <version>4.3.2</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>it.unimi.dsi</groupId>
  157. <artifactId>fastutil</artifactId>
  158. <version>7.1.0</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.logging.log4j</groupId>
  162. <artifactId>log4j-api</artifactId>
  163. <version>2.8.1</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.logging.log4j</groupId>
  167. <artifactId>log4j-core</artifactId>
  168. <version>2.8.1</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.mojang</groupId>
  172. <artifactId>text2speech</artifactId>
  173. <version>1.10.3</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.google.code.findbugs</groupId>
  177. <artifactId>jsr305</artifactId>
  178. <version>3.0.1</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.mojang</groupId>
  182. <artifactId>realms</artifactId>
  183. <version>1.10.18</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.mojang</groupId>
  187. <artifactId>authlib</artifactId>
  188. <version>1.5.25</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>javax.annotation</groupId>
  192. <artifactId>javax.annotation-api</artifactId>
  193. <version>1.3.1</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>javax.vecmath</groupId>
  197. <artifactId>vecmath</artifactId>
  198. <version>1.5.2</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.slick2d</groupId>
  202. <artifactId>slick2d-core</artifactId>
  203. <version>1.0.2</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>javax</groupId>
  207. <artifactId>javaee-api</artifactId>
  208. <version>7.0</version>
  209. <scope>provided</scope>
  210. </dependency>
  211. <dependency>
  212. <groupId>javax.persistence</groupId>
  213. <artifactId>javax.persistence-api</artifactId>
  214. <version>2.2</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.jetbrains</groupId>
  218. <artifactId>annotations</artifactId>
  219. <version>17.0.0</version>
  220. </dependency>
  221.  
  222.  
  223.  
  224. </dependencies>
  225. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement