pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. <!-- 父节点-->
  6. <parent>
  7. <artifactId>collect-fees</artifactId>
  8. <groupId>com.tofly</groupId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>collect-fees-api</artifactId>
  13. <properties>
  14. <maven.compiler.source>11</maven.compiler.source>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <!-- nacos配置中心 -->
  20. <dependency>
  21. <groupId>com.alibaba.cloud</groupId>
  22. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  23. </dependency>
  24. <!-- nacos服务发现 -->
  25. <dependency>
  26. <groupId>com.alibaba.cloud</groupId>
  27. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  28. </dependency>
  29. <!-- RPC -->
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter-openfeign</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.security.oauth.boot</groupId>
  36. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-tomcat</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-undertow</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-redis</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>redis.clients</groupId>
  58. <artifactId>jedis</artifactId>
  59. <version>3.4.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-validation</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-boot-starter</artifactId>
  68. <version>3.5.3.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  73. <version>3.5.1</version>
  74. </dependency>
  75. <!-- swagger -->
  76. <dependency>
  77. <groupId>com.github.xiaoymin</groupId>
  78. <artifactId>knife4j-spring-boot-starter</artifactId>
  79. <version>2.0.9</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-actuator</artifactId>
  84. </dependency>
  85. <!--引入thymeleaf框架-->
  86. <dependency>
  87. <groupId>org.thymeleaf</groupId>
  88. <artifactId>thymeleaf-spring5</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>druid</artifactId>
  93. <version>1.2.16</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.oracle.database.jdbc</groupId>
  97. <artifactId>ojdbc8</artifactId>
  98. <version>21.9.0.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.oracle.database.nls</groupId>
  102. <artifactId>orai18n</artifactId>
  103. <version>21.9.0.0</version>
  104. </dependency>
  105. <!--引入easyexcel最新资源3.2.1 -->
  106. <dependency>
  107. <groupId>com.alibaba</groupId>
  108. <artifactId>easyexcel</artifactId>
  109. <version>3.2.1</version>
  110. </dependency>
  111. <!--引入http依赖 -->
  112. <dependency>
  113. <groupId>org.apache.httpcomponents</groupId>
  114. <artifactId>httpclient</artifactId>
  115. </dependency>
  116. <!--使用Apache Commons Net库来创建FTP业务接口并上传图片文件 -->
  117. <dependency>
  118. <groupId>commons-net</groupId>
  119. <artifactId>commons-net</artifactId>
  120. <version>3.6</version>
  121. </dependency>
  122. <!--自定义-->
  123. <dependency>
  124. <groupId>cn.hutool</groupId>
  125. <artifactId>hutool-all</artifactId>
  126. <version>5.3.5</version>
  127. </dependency>
  128. <!--xml解析-->
  129. <dependency>
  130. <groupId>dom4j</groupId>
  131. <artifactId>dom4j</artifactId>
  132. <version>1.6.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>net.minidev</groupId>
  136. <artifactId>json-smart</artifactId>
  137. <version>2.4.8</version>
  138. <scope>compile</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-beanutils</groupId>
  142. <artifactId>commons-beanutils</artifactId>
  143. <version>1.9.4</version>
  144. <scope>compile</scope>
  145. </dependency>
  146. </dependencies>
  147. <build>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-maven-plugin</artifactId>
  152. <configuration>
  153. <includeSystemScope>true</includeSystemScope>
  154. <excludes>
  155. <exclude>
  156. <groupId>org.projectlombok</groupId>
  157. <artifactId>lombok</artifactId>
  158. </exclude>
  159. </excludes>
  160. </configuration>
  161. </plugin>
  162. </plugins>
  163. </build>
  164. </project>