pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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>cath</artifactId>
  7. <groupId>com.cath</groupId>
  8. <version>3.8.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>cath-common</artifactId>
  12. <description>
  13. common通用工具
  14. </description>
  15. <dependencies>
  16. <!-- Spring框架基本的核心工具 -->
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-context-support</artifactId>
  20. </dependency>
  21. <!-- SpringWeb模块 -->
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-web</artifactId>
  25. </dependency>
  26. <!-- spring security 安全认证 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-security</artifactId>
  30. </dependency>
  31. <!-- pagehelper 分页插件 -->
  32. <dependency>
  33. <groupId>com.github.pagehelper</groupId>
  34. <artifactId>pagehelper-spring-boot-starter</artifactId>
  35. </dependency>
  36. <!-- 自定义验证注解 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-validation</artifactId>
  40. </dependency>
  41. <!--常用工具类 -->
  42. <dependency>
  43. <groupId>org.apache.commons</groupId>
  44. <artifactId>commons-lang3</artifactId>
  45. </dependency>
  46. <!-- JSON工具类 -->
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.core</groupId>
  49. <artifactId>jackson-databind</artifactId>
  50. </dependency>
  51. <!-- 动态数据源 -->
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  55. <version>3.5.2</version>
  56. </dependency>
  57. <!-- 阿里JSON解析器 -->
  58. <dependency>
  59. <groupId>com.alibaba.fastjson2</groupId>
  60. <artifactId>fastjson2</artifactId>
  61. </dependency>
  62. <!-- io常用工具类 -->
  63. <dependency>
  64. <groupId>commons-io</groupId>
  65. <artifactId>commons-io</artifactId>
  66. </dependency>
  67. <!-- 文件上传工具类 -->
  68. <dependency>
  69. <groupId>commons-fileupload</groupId>
  70. <artifactId>commons-fileupload</artifactId>
  71. </dependency>
  72. <!-- excel工具 -->
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi-ooxml</artifactId>
  76. </dependency>
  77. <!-- yml解析器 -->
  78. <dependency>
  79. <groupId>org.yaml</groupId>
  80. <artifactId>snakeyaml</artifactId>
  81. </dependency>
  82. <!-- Token生成与解析-->
  83. <dependency>
  84. <groupId>io.jsonwebtoken</groupId>
  85. <artifactId>jjwt</artifactId>
  86. </dependency>
  87. <!-- Jaxb -->
  88. <dependency>
  89. <groupId>javax.xml.bind</groupId>
  90. <artifactId>jaxb-api</artifactId>
  91. </dependency>
  92. <!-- redis 缓存操作 -->
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-data-redis</artifactId>
  96. </dependency>
  97. <!-- pool 对象池 -->
  98. <dependency>
  99. <groupId>org.apache.commons</groupId>
  100. <artifactId>commons-pool2</artifactId>
  101. </dependency>
  102. <!-- 解析客户端操作系统、浏览器等 -->
  103. <dependency>
  104. <groupId>eu.bitwalker</groupId>
  105. <artifactId>UserAgentUtils</artifactId>
  106. </dependency>
  107. <!-- servlet包 -->
  108. <dependency>
  109. <groupId>javax.servlet</groupId>
  110. <artifactId>javax.servlet-api</artifactId>
  111. </dependency>
  112. <!-- jtds, MS SQL Server驱动 -->
  113. <dependency>
  114. <groupId>net.sourceforge.jtds</groupId>
  115. <artifactId>jtds</artifactId>
  116. <version>1.3.1</version>
  117. </dependency>
  118. <!--锐浪报表-->
  119. <dependency>
  120. <groupId>cn.rubylong</groupId>
  121. <artifactId>gridreport</artifactId>
  122. <version>0.0.1</version>
  123. <!-- <scope>system</scope>-->
  124. <!-- <systemPath>${project.basedir}/src/main/resources/lib/gridreport.jar</systemPath>-->
  125. </dependency>
  126. <!-- kettle 工具本地jar包加载 -->
  127. <dependency>
  128. <groupId>pentaho-kettle</groupId>
  129. <artifactId>kettle-core</artifactId>
  130. <version>9.4.0.0-343</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>pentaho-kettle</groupId>
  134. <artifactId>kettle-engine</artifactId>
  135. <version>9.4.0.0-343</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>pentaho-kettle</groupId>
  139. <artifactId>metastore</artifactId>
  140. <version>9.4.0.0-343</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.pentaho</groupId>
  144. <artifactId>pentaho-encryption-support</artifactId>
  145. <version>9.4.0.0-343</version>
  146. </dependency>
  147. <!--kettle需要用到的其它依赖-->
  148. <dependency>
  149. <groupId>org.apache.commons</groupId>
  150. <artifactId>commons-vfs2</artifactId>
  151. <version>2.7.0</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.google.guava</groupId>
  155. <artifactId>guava</artifactId>
  156. <version>17.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>commons-lang</groupId>
  160. <artifactId>commons-lang</artifactId>
  161. <version>2.6</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>commons-codec</groupId>
  165. <artifactId>commons-codec</artifactId>
  166. <version>1.15</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.jcraft</groupId>
  170. <artifactId>jsch</artifactId>
  171. <version>0.1.54</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>net.sourceforge.jexcelapi</groupId>
  175. <artifactId>jxl</artifactId>
  176. <version>2.6.12</version>
  177. </dependency>
  178. <dependency>
  179. <artifactId>janino</artifactId>
  180. <groupId>org.codehaus.janino</groupId>
  181. <version>3.0.8</version>
  182. </dependency>
  183. <dependency>
  184. <artifactId>commons-compiler</artifactId>
  185. <groupId>org.codehaus.janino</groupId>
  186. <version>3.0.8</version>
  187. </dependency>
  188. <!-- u8app接口依赖-->
  189. <dependency>
  190. <groupId>org.apache.httpcomponents</groupId>
  191. <artifactId>httpclient</artifactId>
  192. <version>4.5.14</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>log4j</groupId>
  196. <artifactId>log4j</artifactId>
  197. <version>1.2.17</version>
  198. </dependency>
  199. <!-- 金蝶k3 jar, 本地maven 打包 -->
  200. <dependency>
  201. <groupId>k3cloud</groupId>
  202. <artifactId>k3cloud-webapi-sdk</artifactId>
  203. <version>8.0.6</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>gson</groupId>
  207. <artifactId>gson</artifactId>
  208. <version>2.8.0</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>hamcrest</groupId>
  212. <artifactId>hamcrest-core</artifactId>
  213. <version>1.3</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>junit</groupId>
  217. <artifactId>junit</artifactId>
  218. <version>4.13.1</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>cn.hutool</groupId>
  222. <artifactId>hutool-all</artifactId>
  223. <version>5.8.0.M3</version>
  224. </dependency>
  225. <!-- 条码 -->
  226. <dependency>
  227. <groupId>net.sf.barcode4j</groupId>
  228. <artifactId>barcode4j-light</artifactId>
  229. <version>2.0</version>
  230. </dependency>
  231. <!-- 条码 -->
  232. <dependency>
  233. <groupId>net.sf.barcode4j</groupId>
  234. <artifactId>barcode4j-light</artifactId>
  235. <version>2.0</version>
  236. </dependency>
  237. <!-- 二维码 -->
  238. <dependency>
  239. <groupId>com.google.zxing</groupId>
  240. <artifactId>core</artifactId>
  241. <version>3.3.3</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.bstek.ureport</groupId>
  245. <artifactId>ureport2-console</artifactId>
  246. <version>2.2.9</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>io.minio</groupId>
  250. <artifactId>minio</artifactId>
  251. <version>8.2.1</version>
  252. </dependency>
  253. </dependencies>
  254. </project>