pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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>tianhu</artifactId>
  7. <groupId>com.tianhu</groupId>
  8. <version>2.4.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.tianhu</groupId>
  12. <artifactId>sc-service</artifactId>
  13. <dependencies>
  14. <!-- SpringCloud Ailibaba Nacos -->
  15. <dependency>
  16. <groupId>com.alibaba.cloud</groupId>
  17. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  18. </dependency>
  19. <!-- SpringCloud Ailibaba Nacos Config -->
  20. <dependency>
  21. <groupId>com.alibaba.cloud</groupId>
  22. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  23. </dependency>
  24. <!-- SpringCloud Ailibaba Sentinel -->
  25. <dependency>
  26. <groupId>com.alibaba.cloud</groupId>
  27. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  28. </dependency>
  29. <!-- SpringBoot Actuator -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-actuator</artifactId>
  33. </dependency>
  34. <!-- Swagger -->
  35. <dependency>
  36. <groupId>io.springfox</groupId>
  37. <artifactId>springfox-swagger-ui</artifactId>
  38. <version>${swagger.fox.version}</version>
  39. </dependency>
  40. <!-- Mysql Connector -->
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. <version>8.0.15</version>
  45. <scope>compile</scope>
  46. <exclusions>
  47. <exclusion>
  48. <artifactId>protobuf-java</artifactId>
  49. <groupId>com.google.protobuf</groupId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <!-- TianHu Common Datascope -->
  54. <!-- <dependency>-->
  55. <!-- <groupId>com.tianhu</groupId>-->
  56. <!-- <artifactId>tianhu-common-datascope</artifactId>-->
  57. <!-- </dependency>-->
  58. <!-- TianHu Common Log -->
  59. <dependency>
  60. <groupId>com.tianhu</groupId>
  61. <artifactId>tianhu-common-log</artifactId>
  62. </dependency>
  63. <!-- TianHu Common Swagger -->
  64. <dependency>
  65. <groupId>com.tianhu</groupId>
  66. <artifactId>tianhu-common-swagger</artifactId>
  67. </dependency>
  68. <!-- 邮箱发送 -->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-mail</artifactId>
  72. </dependency>
  73. <!-- 测试类 -->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi</artifactId>
  82. <version>4.1.2</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.deepoove</groupId>
  87. <artifactId>poi-tl</artifactId>
  88. <version>1.10.0-beta</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.poi</groupId>
  92. <artifactId>poi-excelant</artifactId>
  93. <version>4.1.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.poi</groupId>
  97. <artifactId>poi-scratchpad</artifactId>
  98. <version>4.1.2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.poi</groupId>
  102. <artifactId>poi-ooxml</artifactId>
  103. <version>4.1.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi-ooxml-schemas</artifactId>
  108. <version>4.1.2</version>
  109. </dependency>
  110. <!-- 升级成mybatis-plus -->
  111. <dependency>
  112. <groupId>com.baomidou</groupId>
  113. <artifactId>mybatis-plus</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.baomidou</groupId>
  117. <artifactId>mybatis-plus-boot-starter</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.tianhu</groupId>
  121. <artifactId>tianhu-common-dbutil</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.projectlombok</groupId>
  125. <artifactId>lombok</artifactId>
  126. <scope>provided</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.alibaba</groupId>
  130. <artifactId>fastjson</artifactId>
  131. <version>1.2.49</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-test</artifactId>
  136. </dependency>
  137. <!-- 公众号推送 -->
  138. <dependency>
  139. <groupId>com.google.code.gson</groupId>
  140. <artifactId>gson</artifactId>
  141. <version>2.8.5</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework.cloud</groupId>
  145. <artifactId>spring-cloud-starter-openfeign</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>cpcn.dsp</groupId>
  149. <artifactId>cpcn-dsp-api</artifactId>
  150. <version>v1.6.4.11</version>
  151. <systemPath>${project.basedir}/lib/cpcn-dsp-api-v1.6.4.11.jar</systemPath>
  152. <scope>system</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>log4j</groupId>
  156. <artifactId>log4j</artifactId>
  157. <version>1.2.16</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.google.zxing</groupId>
  161. <artifactId>core</artifactId>
  162. <version>3.3.0</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.github.penggle</groupId>
  166. <artifactId>kaptcha</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.google.zxing</groupId>
  170. <artifactId>javase</artifactId>
  171. <version>3.3.0</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.spire</groupId>
  175. <artifactId>Spire.Doc</artifactId>
  176. <version>3.0.2</version>
  177. <scope>system</scope>
  178. <systemPath>${project.basedir}/lib/Spire.Doc.jar</systemPath>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.abcb</groupId>
  182. <artifactId>sadk</artifactId>
  183. <version>3.7.1.0</version>
  184. <systemPath>${project.basedir}/lib/sadk-3.7.1.0.jar</systemPath>
  185. <scope>system</scope>
  186. </dependency>
  187. <dependency>
  188. <groupId>paperless.sadk</groupId>
  189. <artifactId>paperless-sadk-ext</artifactId>
  190. <version>3.0.2.1</version>
  191. <systemPath>${project.basedir}/lib/paperless-sadk-ext-3.0.2.1.jar</systemPath>
  192. <scope>system</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>paperless.sadk</groupId>
  196. <artifactId>jackson-annotations</artifactId>
  197. <version>2.11.1</version>
  198. <systemPath>${project.basedir}/lib/jackson-annotations-2.11.1.jar</systemPath>
  199. <scope>system</scope>
  200. </dependency>
  201. <dependency>
  202. <groupId>paperless.sadk</groupId>
  203. <artifactId>jackson-core</artifactId>
  204. <version>2.11.1</version>
  205. <systemPath>${project.basedir}/lib/jackson-core-2.11.1.jar</systemPath>
  206. <scope>system</scope>
  207. </dependency>
  208. <dependency>
  209. <groupId>paperless.sadk</groupId>
  210. <artifactId>jackson-databind-2.11.1</artifactId>
  211. <version>2.11.1</version>
  212. <systemPath>${project.basedir}/lib/jackson-databind-2.11.1.jar</systemPath>
  213. <scope>system</scope>
  214. </dependency>
  215. <dependency>
  216. <groupId>paperless.sadk</groupId>
  217. <artifactId>jackson-dataformat-cbor</artifactId>
  218. <version>2.6.7</version>
  219. <systemPath>${project.basedir}/lib/jackson-dataformat-cbor-2.6.7.jar</systemPath>
  220. <scope>system</scope>
  221. </dependency>
  222. <dependency>
  223. <groupId>paperless.sadk</groupId>
  224. <artifactId>logback-cfca-jdk1.6-4.2.1.0</artifactId>
  225. <version>4.2.1.0</version>
  226. <systemPath>${project.basedir}/lib/logback-cfca-jdk1.6-4.2.1.0.jar</systemPath>
  227. <scope>system</scope>
  228. </dependency>
  229. <dependency>
  230. <groupId>paperless.sadk</groupId>
  231. <artifactId>timestampAPI-4.0.3.0</artifactId>
  232. <version>4.0.3.0</version>
  233. <systemPath>${project.basedir}/lib/timestampAPI-4.0.3.0.jar</systemPath>
  234. <scope>system</scope>
  235. </dependency>
  236. <dependency>
  237. <groupId>paperless.sadk</groupId>
  238. <artifactId>common-3.6.3.4-tsvo</artifactId>
  239. <version>3.6.3.4</version>
  240. <systemPath>${project.basedir}/lib/common-3.6.3.4-tsvo.jar</systemPath>
  241. <scope>system</scope>
  242. </dependency>
  243. <dependency>
  244. <groupId>aspose</groupId>
  245. <artifactId>aspose</artifactId>
  246. <version>15.8.0</version>
  247. <systemPath>${project.basedir}/lib/aspose-words-15.8.0-jdk16.jar</systemPath>
  248. <scope>system</scope>
  249. </dependency>
  250. </dependencies>
  251. <build>
  252. <plugins>
  253. <plugin>
  254. <groupId>org.springframework.boot</groupId>
  255. <artifactId>spring-boot-maven-plugin</artifactId>
  256. <configuration>
  257. <includeSystemScope>true</includeSystemScope>
  258. <excludeGroupIds>
  259. e-iceblue
  260. </excludeGroupIds>
  261. </configuration>
  262. <executions>
  263. <execution>
  264. <goals>
  265. <goal>repackage</goal>
  266. </goals>
  267. </execution>
  268. </executions>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. </project>