pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. <groupId>top.lvzhiqiang</groupId>
  7. <artifactId>l1024v-jav</artifactId>
  8. <version>1.0.0</version>
  9. <!-- 项目的名称和描述 -->
  10. <name>l1024v-jav-server</name>
  11. <description>jav服务</description>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <maven.deploy.skip>true</maven.deploy.skip>
  16. <log4j2.version>2.17.1</log4j2.version>
  17. </properties>
  18. <parent>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-parent</artifactId>
  21. <version>2.1.9.RELEASE</version>
  22. </parent>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-aop</artifactId>
  27. </dependency>
  28. <!-- 引入Web功能 -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <!-- Freemarker -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-freemarker</artifactId>
  37. </dependency>
  38. <!--log4j2-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter</artifactId>
  42. <exclusions>
  43. <!-- 排除自带的logback依赖 -->
  44. <exclusion>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-logging</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <!-- 引入log4j2依赖 -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-log4j2</artifactId>
  54. </dependency>
  55. <!--mybatis-->
  56. <dependency>
  57. <groupId>org.mybatis.spring.boot</groupId>
  58. <artifactId>mybatis-spring-boot-starter</artifactId>
  59. <version>2.1.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.pagehelper</groupId>
  63. <artifactId>pagehelper-spring-boot-starter</artifactId>
  64. <version>1.2.12</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.commons</groupId>
  68. <artifactId>commons-lang3</artifactId>
  69. <version>3.7</version>
  70. </dependency>
  71. <!-- mysql的驱动 -->
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <version>8.0.17</version>
  76. </dependency>
  77. <!--lombok-->
  78. <dependency>
  79. <groupId>org.projectlombok</groupId>
  80. <artifactId>lombok</artifactId>
  81. <version>1.16.20</version>
  82. </dependency>
  83. <!-- 单元测试 -->
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <!--fastjson-->
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>fastjson</artifactId>
  93. <version>2.0.44</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  96. <dependency>
  97. <groupId>org.jsoup</groupId>
  98. <artifactId>jsoup</artifactId>
  99. <version>1.14.3</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-configuration-processor</artifactId>
  104. <version>2.7.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.github.binarywang</groupId>
  108. <artifactId>weixin-java-cp</artifactId>
  109. <version>4.5.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.httpcomponents</groupId>
  113. <artifactId>httpclient</artifactId>
  114. <version>4.5.13</version>
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/ch.ethz.ganymed/ganymed-ssh2 -->
  117. <dependency>
  118. <groupId>ch.ethz.ganymed</groupId>
  119. <artifactId>ganymed-ssh2</artifactId>
  120. <version>262</version>
  121. <scope>test</scope>
  122. </dependency>
  123. <!--Markdown转Html-->
  124. <!-- https://mvnrepository.com/artifact/org.commonmark/commonmark -->
  125. <dependency>
  126. <groupId>org.commonmark</groupId>
  127. <artifactId>commonmark</artifactId>
  128. <version>0.21.0</version>
  129. </dependency>
  130. <!--扩展 标题-->
  131. <dependency>
  132. <groupId>org.commonmark</groupId>
  133. <artifactId>commonmark-ext-heading-anchor</artifactId>
  134. <version>0.21.0</version>
  135. </dependency>
  136. <!--扩展 表格-->
  137. <dependency>
  138. <groupId>org.commonmark</groupId>
  139. <artifactId>commonmark-ext-gfm-tables</artifactId>
  140. <version>0.21.0</version>
  141. </dependency>
  142. <!-- FTP文件操作 -->
  143. <dependency>
  144. <groupId>commons-net</groupId>
  145. <artifactId>commons-net</artifactId>
  146. <version>3.10.0</version>
  147. </dependency>
  148. <!-- Thumbnailator Dependency -->
  149. <dependency>
  150. <groupId>net.coobird</groupId>
  151. <artifactId>thumbnailator</artifactId>
  152. <version>0.4.18</version>
  153. </dependency>
  154. <!--redis-->
  155. <dependency>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-starter-data-redis</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.redisson</groupId>
  161. <artifactId>redisson-spring-boot-starter</artifactId>
  162. <version>3.11.5</version>
  163. </dependency>
  164. <!--poi-->
  165. <dependency>
  166. <groupId>org.apache.poi</groupId>
  167. <artifactId>poi</artifactId>
  168. <version>3.17</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.poi</groupId>
  172. <artifactId>poi-ooxml</artifactId>
  173. <version>3.17</version>
  174. </dependency>
  175. <!--mp3agic-->
  176. <dependency>
  177. <groupId>com.mpatric</groupId>
  178. <artifactId>mp3agic</artifactId>
  179. <version>0.9.1</version>
  180. </dependency>
  181. <!-- 定时任务 -->
  182. <dependency>
  183. <groupId>com.xuxueli</groupId>
  184. <artifactId>xxl-job-core</artifactId>
  185. <version>2.3.1</version>
  186. </dependency>
  187. </dependencies>
  188. <build>
  189. <finalName>jav</finalName>
  190. <plugins>
  191. <plugin>
  192. <groupId>org.springframework.boot</groupId>
  193. <artifactId>spring-boot-maven-plugin</artifactId>
  194. </plugin>
  195. </plugins>
  196. </build>
  197. </project>