pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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. <parent>
  6. <artifactId>fs</artifactId>
  7. <groupId>com.fs</groupId>
  8. <version>1.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>fs-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- 验证码 -->
  18. <dependency>
  19. <groupId>com.github.penggle</groupId>
  20. <artifactId>kaptcha</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <artifactId>javax.servlet-api</artifactId>
  24. <groupId>javax.servlet</groupId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.github.javen205</groupId>
  30. <artifactId>IJPay-All</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.alipay.sdk</groupId>
  34. <artifactId>alipay-sdk-java</artifactId>
  35. <version>4.8.62.ALL</version>
  36. </dependency>
  37. <!-- spring-boot-devtools -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-devtools</artifactId>
  41. <optional>true</optional> <!-- 表示依赖不会传递 -->
  42. </dependency>
  43. <!-- Mysql驱动包 -->
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <!-- 核心模块-->
  49. <dependency>
  50. <groupId>com.fs</groupId>
  51. <artifactId>fs-framework</artifactId>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>javax.annotation</groupId>
  55. <artifactId>annotations-api</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <!-- 定时任务-->
  60. <dependency>
  61. <groupId>com.fs</groupId>
  62. <artifactId>fs-quartz</artifactId>
  63. </dependency>
  64. <!-- lombok -->
  65. <dependency>
  66. <groupId>org.projectlombok</groupId>
  67. <artifactId>lombok</artifactId>
  68. <version>1.18.32</version>
  69. </dependency>
  70. <!-- 代码生成-->
  71. <dependency>
  72. <groupId>com.fs</groupId>
  73. <artifactId>fs-generator</artifactId>
  74. </dependency>
  75. <!-- swagger2-->
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger2</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.clickhouse</groupId>
  82. <artifactId>clickhouse-jdbc</artifactId>
  83. <version>0.4.6</version>
  84. </dependency>
  85. <!-- swagger2-UI-->
  86. <dependency>
  87. <groupId>io.springfox</groupId>
  88. <artifactId>springfox-swagger-ui</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.github.xiaoymin</groupId>
  92. <artifactId>swagger-bootstrap-ui</artifactId>
  93. <version>1.9.3</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.tencentcloudapi</groupId>
  97. <artifactId>tencentcloud-sdk-java</artifactId>
  98. <version>3.1.322</version>
  99. <scope>compile</scope>
  100. <exclusions>
  101. <exclusion>
  102. <groupId>com.squareup.okio</groupId>
  103. <artifactId>okio</artifactId>
  104. </exclusion>
  105. <exclusion>
  106. <groupId>com.squareup.okhttp</groupId>
  107. <artifactId>okhttp</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.squareup.okio</groupId>
  113. <artifactId>okio</artifactId>
  114. <version>2.10.0</version>
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/com.qcloud/qcloud-java-sdk -->
  117. <dependency>
  118. <groupId>com.qcloud</groupId>
  119. <artifactId>qcloud-java-sdk</artifactId>
  120. <version>2.0.1</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.clickhouse</groupId>
  124. <artifactId>clickhouse-jdbc</artifactId>
  125. <version>0.4.6</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-starter-test</artifactId>
  130. </dependency>
  131. </dependencies>
  132. <build>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.apache.maven.plugins</groupId>
  136. <artifactId>maven-compiler-plugin</artifactId>
  137. <version>3.11.0</version>
  138. <configuration>
  139. <source>${java.version}</source>
  140. <target>${java.version}</target>
  141. <encoding>${project.build.sourceEncoding}</encoding>
  142. <annotationProcessorPaths>
  143. <path>
  144. <groupId>org.projectlombok</groupId>
  145. <artifactId>lombok</artifactId>
  146. <version>${lombok.version}</version>
  147. </path>
  148. <path>
  149. <groupId>org.mapstruct</groupId>
  150. <artifactId>mapstruct-processor</artifactId>
  151. <version>${org.mapstruct.version}</version>
  152. </path>
  153. <path>
  154. <groupId>org.projectlombok</groupId>
  155. <artifactId>lombok-mapstruct-binding</artifactId>
  156. <version>0.2.0</version>
  157. </path>
  158. </annotationProcessorPaths>
  159. </configuration>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.springframework.boot</groupId>
  163. <artifactId>spring-boot-maven-plugin</artifactId>
  164. <version>2.7.18</version>
  165. <configuration>
  166. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  167. <excludes>
  168. <exclude>
  169. <groupId>org.apache.tomcat</groupId>
  170. <artifactId>annotations-api</artifactId>
  171. </exclude>
  172. </excludes>
  173. </configuration>
  174. <executions>
  175. <execution>
  176. <goals>
  177. <goal>repackage</goal>
  178. </goals>
  179. </execution>
  180. </executions>
  181. </plugin>
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-war-plugin</artifactId>
  185. <version>3.1.0</version>
  186. <configuration>
  187. <failOnMissingWebXml>false</failOnMissingWebXml>
  188. <warName>${project.artifactId}</warName>
  189. </configuration>
  190. </plugin>
  191. </plugins>
  192. <finalName>${project.artifactId}</finalName>
  193. </build>
  194. </project>