pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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/maven-v4_0_0.xsd">
  3. <parent>
  4. <groupId>com.tzld.commons</groupId>
  5. <artifactId>supom</artifactId>
  6. <version>1.0.6</version>
  7. </parent>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>long-article-server</module>
  11. </modules>
  12. <modelVersion>4.0.0</modelVersion>
  13. <groupId>com.tzld.piaoquan</groupId>
  14. <artifactId>long-article-manage</artifactId>
  15. <version>1.0-SNAPSHOT</version>
  16. <name>long-article-manage</name>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-logging</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-log4j2</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.github.pagehelper</groupId>
  42. <artifactId>pagehelper-spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.lettuce</groupId>
  50. <artifactId>lettuce-core</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.commons</groupId>
  54. <artifactId>commons-pool2</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.mybatis.generator</groupId>
  58. <artifactId>mybatis-generator-core</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-lang3</artifactId>
  68. </dependency>
  69. <!-- druid数据源 -->
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>druid</artifactId>
  73. <version>1.1.23</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus-boot-starter</artifactId>
  78. <version>3.5.3.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.projectlombok</groupId>
  82. <artifactId>lombok</artifactId>
  83. <version>1.18.12</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.httpcomponents</groupId>
  87. <artifactId>httpclient</artifactId>
  88. <version>4.5.14</version> <!-- 使用最新版本 -->
  89. </dependency>
  90. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  91. <dependency>
  92. <groupId>org.apache.httpcomponents</groupId>
  93. <artifactId>httpmime</artifactId>
  94. <version>4.5.14</version>
  95. </dependency>
  96. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  97. <dependency>
  98. <groupId>org.apache.httpcomponents</groupId>
  99. <artifactId>httpcore</artifactId>
  100. <version>4.4.16</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.google.guava</groupId>
  104. <artifactId>guava</artifactId>
  105. <version>31.1-jre</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.aliyun.odps</groupId>
  113. <artifactId>odps-sdk-core</artifactId>
  114. <version>0.27.2-public</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.xuxueli</groupId>
  118. <artifactId>xxl-job-core</artifactId>
  119. </dependency>
  120. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  121. <dependency>
  122. <groupId>commons-codec</groupId>
  123. <artifactId>commons-codec</artifactId>
  124. <version>1.17.1</version>
  125. </dependency>
  126. <!--XML 解析包-->
  127. <dependency>
  128. <groupId>org.jdom</groupId>
  129. <artifactId>jdom2</artifactId>
  130. <version>2.0.6</version>
  131. </dependency>
  132. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  133. <dependency>
  134. <groupId>cn.hutool</groupId>
  135. <artifactId>hutool-all</artifactId>
  136. <version>5.8.33</version>
  137. </dependency>
  138. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-core -->
  139. <dependency>
  140. <groupId>cn.hutool</groupId>
  141. <artifactId>hutool-core</artifactId>
  142. <version>5.8.33</version>
  143. </dependency>
  144. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-http -->
  145. <dependency>
  146. <groupId>cn.hutool</groupId>
  147. <artifactId>hutool-http</artifactId>
  148. <version>5.8.33</version>
  149. </dependency>
  150. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  151. <dependency>
  152. <groupId>org.jsoup</groupId>
  153. <artifactId>jsoup</artifactId>
  154. <version>1.18.1</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.aliyun.oss</groupId>
  158. <artifactId>aliyun-sdk-oss</artifactId>
  159. <version>3.17.0</version> <!-- 请根据需要选择版本 -->
  160. </dependency>
  161. <!-- https://mvnrepository.com/artifact/com.ctrip.framework.apollo/apollo-client -->
  162. <dependency>
  163. <groupId>com.ctrip.framework.apollo</groupId>
  164. <artifactId>apollo-client</artifactId>
  165. <version>2.3.0</version>
  166. </dependency>
  167. </dependencies>
  168. </project>