pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. <properties>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.tzld.commons</groupId>
  29. <artifactId>aliyun-log-spring-boot-starter</artifactId>
  30. <version>2.0.0</version>
  31. <exclusions>
  32. <exclusion>
  33. <artifactId>aliyun-log</artifactId>
  34. <groupId>com.aliyun.openservices</groupId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.aliyun.openservices</groupId>
  40. <artifactId>aliyun-log-logback-appender</artifactId>
  41. <version>0.1.18</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mybatis.spring.boot</groupId>
  49. <artifactId>mybatis-spring-boot-starter</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.pagehelper</groupId>
  53. <artifactId>pagehelper-spring-boot-starter</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-redis</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.lettuce</groupId>
  61. <artifactId>lettuce-core</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.commons</groupId>
  65. <artifactId>commons-pool2</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mybatis.generator</groupId>
  69. <artifactId>mybatis-generator-core</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-lang3</artifactId>
  79. </dependency>
  80. <!-- druid数据源 -->
  81. <dependency>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>druid</artifactId>
  84. <version>1.1.23</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.baomidou</groupId>
  88. <artifactId>mybatis-plus-boot-starter</artifactId>
  89. <version>3.5.3.2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. <version>1.18.34</version>
  95. <scope>provided</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.httpcomponents</groupId>
  99. <artifactId>httpclient</artifactId>
  100. <version>4.5.14</version> <!-- 使用最新版本 -->
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  103. <dependency>
  104. <groupId>org.apache.httpcomponents</groupId>
  105. <artifactId>httpmime</artifactId>
  106. <version>4.5.14</version>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  109. <dependency>
  110. <groupId>org.apache.httpcomponents</groupId>
  111. <artifactId>httpcore</artifactId>
  112. <version>4.4.16</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.google.guava</groupId>
  116. <artifactId>guava</artifactId>
  117. <version>31.1-jre</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>fastjson</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.aliyun.odps</groupId>
  125. <artifactId>odps-sdk-core</artifactId>
  126. <version>0.27.2-public</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.xuxueli</groupId>
  130. <artifactId>xxl-job-core</artifactId>
  131. </dependency>
  132. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  133. <dependency>
  134. <groupId>commons-codec</groupId>
  135. <artifactId>commons-codec</artifactId>
  136. <version>1.17.1</version>
  137. </dependency>
  138. <!--XML 解析包-->
  139. <dependency>
  140. <groupId>org.jdom</groupId>
  141. <artifactId>jdom2</artifactId>
  142. <version>2.0.6</version>
  143. </dependency>
  144. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  145. <dependency>
  146. <groupId>cn.hutool</groupId>
  147. <artifactId>hutool-all</artifactId>
  148. <version>5.8.33</version>
  149. </dependency>
  150. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-core -->
  151. <dependency>
  152. <groupId>cn.hutool</groupId>
  153. <artifactId>hutool-core</artifactId>
  154. <version>5.8.33</version>
  155. </dependency>
  156. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-http -->
  157. <dependency>
  158. <groupId>cn.hutool</groupId>
  159. <artifactId>hutool-http</artifactId>
  160. <version>5.8.33</version>
  161. </dependency>
  162. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  163. <dependency>
  164. <groupId>org.jsoup</groupId>
  165. <artifactId>jsoup</artifactId>
  166. <version>1.18.1</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.aliyun.oss</groupId>
  170. <artifactId>aliyun-sdk-oss</artifactId>
  171. <version>3.17.0</version> <!-- 请根据需要选择版本 -->
  172. </dependency>
  173. <!-- https://mvnrepository.com/artifact/com.ctrip.framework.apollo/apollo-client -->
  174. <dependency>
  175. <groupId>com.ctrip.framework.apollo</groupId>
  176. <artifactId>apollo-client</artifactId>
  177. <version>2.0.0</version>
  178. </dependency>
  179. <!-- https://mvnrepository.com/artifact/com.theokanning.openai-gpt3-java/service -->
  180. <dependency>
  181. <groupId>com.theokanning.openai-gpt3-java</groupId>
  182. <artifactId>service</artifactId>
  183. <version>0.18.2</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.volcengine</groupId>
  187. <artifactId>volcengine-java-sdk-ark-runtime</artifactId>
  188. <version>0.1.152</version>
  189. </dependency>
  190. </dependencies>
  191. </project>