pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <version>2.7.18</version>
  138. <configuration>
  139. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  140. <excludes>
  141. <exclude>
  142. <groupId>org.apache.tomcat</groupId>
  143. <artifactId>annotations-api</artifactId>
  144. </exclude>
  145. </excludes>
  146. </configuration>
  147. <executions>
  148. <execution>
  149. <goals>
  150. <goal>repackage</goal>
  151. </goals>
  152. </execution>
  153. </executions>
  154. </plugin>
  155. <plugin>
  156. <groupId>org.apache.maven.plugins</groupId>
  157. <artifactId>maven-war-plugin</artifactId>
  158. <version>3.1.0</version>
  159. <configuration>
  160. <failOnMissingWebXml>false</failOnMissingWebXml>
  161. <warName>${project.artifactId}</warName>
  162. </configuration>
  163. </plugin>
  164. </plugins>
  165. <finalName>${project.artifactId}</finalName>
  166. </build>
  167. </project>