Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.58 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>host.batt.daemon.MinecraftDaemon</groupId>
  8. <artifactId>MinecraftDaemon</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.projectlombok</groupId>
  14. <artifactId>lombok</artifactId>
  15. <version>1.16.12</version>
  16. <scope>provided</scope>
  17. </dependency>
  18. <!--
  19. https://mvnrepository.com/artifact/commons-io/commons-io
  20. -->
  21. <dependency>
  22. <groupId>commons-io</groupId>
  23. <artifactId>commons-io</artifactId>
  24. <version>2.5</version>
  25. </dependency>
  26. <!--
  27. https://mvnrepository.com/artifact/org.apache.ant/ant
  28. -->
  29. <dependency>
  30. <groupId>org.apache.ant</groupId>
  31. <artifactId>ant</artifactId>
  32. <version>1.8.2</version>
  33. </dependency>
  34. <!--
  35. https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
  36. -->
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-collections4</artifactId>
  40. <version>4.1</version>
  41. </dependency>
  42. <!--
  43. http://mina.apache.org/ftpserver-project/download_1.1.1.html
  44. -->
  45. <dependency>
  46. <groupId>org.apache.ftpserver</groupId>
  47. <artifactId>ftpserver-core</artifactId>
  48. <version>1.1.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.commons</groupId>
  52. <artifactId>commons-lang3</artifactId>
  53. <version>3.4</version>
  54. </dependency>
  55. <!--
  56. https://mvnrepository.com/artifact/commons-codec/commons-codec
  57. -->
  58. <dependency>
  59. <groupId>commons-codec</groupId>
  60. <artifactId>commons-codec</artifactId>
  61. <version>1.11</version>
  62. </dependency>
  63. <!--
  64. https://mvnrepository.com/artifact/mysql/mysql-connector-java
  65. -->
  66. <dependency>
  67. <groupId>mysql</groupId>
  68. <artifactId>mysql-connector-java</artifactId>
  69. <version>5.1.6</version>
  70. </dependency>
  71. <!--
  72. https://mvnrepository.com/artifact/org.yaml/snakeyaml
  73. -->
  74. <dependency>
  75. <groupId>org.yaml</groupId>
  76. <artifactId>snakeyaml</artifactId>
  77. <version>1.19</version>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/org.json/json -->
  80. <dependency>
  81. <groupId>org.json</groupId>
  82. <artifactId>json</artifactId>
  83. <version>20171018</version>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  86. <dependency>
  87. <groupId>org.apache.commons</groupId>
  88. <artifactId>commons-collections4</artifactId>
  89. <version>4.1</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.github.docker-java</groupId>
  93. <artifactId>docker-java</artifactId>
  94. <version>3.0.1</version>
  95. </dependency>
  96.  
  97. <!-- https://mvnrepository.com/artifact/org.mindrot/jbcrypt -->
  98. <dependency>
  99. <groupId>org.mindrot</groupId>
  100. <artifactId>jbcrypt</artifactId>
  101. <version>0.3m</version>
  102. </dependency>
  103. </dependencies>
  104.  
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-shade-plugin</artifactId>
  110. <version>3.1.0</version>
  111. <executions>
  112. <execution>
  113. <phase>package</phase>
  114. <goals>
  115. <goal>shade</goal>
  116. </goals>
  117. <configuration>
  118. <transformers>
  119. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  120. <mainClass>host.batt.daemon.MinecraftDaemon</mainClass>
  121. </transformer>
  122. </transformers>
  123. </configuration>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-jar-plugin</artifactId>
  130. <configuration>
  131. <archive>
  132. <manifest>
  133. <addClasspath>true</addClasspath>
  134. <classpathPrefix>libs/</classpathPrefix>
  135. <mainClass>host.batt.daemon.MinecraftDaemon</mainClass>
  136. </manifest>
  137. </archive>
  138. </configuration>
  139. </plugin>
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-compiler-plugin</artifactId>
  143. <configuration>
  144. <source>1.8</source>
  145. <target>1.8</target>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150.  
  151. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement