pom.xml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.zqt.ccj</groupId>
  7. <artifactId>patrol-dependencies</artifactId>
  8. <version>${revision}</version>
  9. <packaging>pom</packaging>
  10. <name>${project.artifactId}</name>
  11. <description>基础 bom 文件,管理整个项目的依赖版本</description>
  12. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  13. <properties>
  14. <revision>1.6.4-snapshot</revision>
  15. <!-- 统一依赖管理 -->
  16. <spring.boot.version>2.6.10</spring.boot.version>
  17. <!-- Web 相关 -->
  18. <knife4j.version>3.0.3</knife4j.version>
  19. <swagger-annotations.version>1.6.6</swagger-annotations.version>
  20. <servlet.versoin>2.5</servlet.versoin>
  21. <!-- DB 相关 -->
  22. <druid.version>1.2.11</druid.version>
  23. <mybatis-plus.version>3.5.2</mybatis-plus.version>
  24. <mybatis-plus-generator.version>3.5.2</mybatis-plus-generator.version>
  25. <dynamic-datasource.version>3.5.0</dynamic-datasource.version>
  26. <redisson.version>3.17.4</redisson.version>
  27. <!-- Config 配置中心相关 -->
  28. <apollo.version>1.9.2</apollo.version>
  29. <!-- 服务保障相关 -->
  30. <lock4j.version>2.2.0</lock4j.version>
  31. <resilience4j.version>1.7.1</resilience4j.version>
  32. <!-- 监控相关 -->
  33. <skywalking.version>8.7.0</skywalking.version>
  34. <spring-boot-admin.version>2.6.7</spring-boot-admin.version>
  35. <opentracing.version>0.31.0</opentracing.version>
  36. <!-- Test 测试相关 -->
  37. <podam.version>7.2.6.RELEASE</podam.version>
  38. <jedis-mock.version>0.1.16</jedis-mock.version>
  39. <mockito-inline.version>4.0.0</mockito-inline.version>
  40. <!-- Bpm 工作流相关 -->
  41. <flowable.version>6.7.0</flowable.version>
  42. <!-- 工具类相关 -->
  43. <jasypt-spring-boot-starter.version>3.0.4</jasypt-spring-boot-starter.version>
  44. <lombok.version>1.18.20</lombok.version>
  45. <mapstruct.version>1.4.1.Final</mapstruct.version>
  46. <hutool.version>5.7.22</hutool.version>
  47. <easyexcel.verion>3.1.1</easyexcel.verion>
  48. <velocity.version>2.2</velocity.version>
  49. <screw.version>1.0.5</screw.version>
  50. <fastjson.version>1.2.83</fastjson.version>
  51. <guava.version>30.1.1-jre</guava.version>
  52. <guice.version>5.1.0</guice.version>
  53. <transmittable-thread-local.version>2.12.2</transmittable-thread-local.version>
  54. <commons-net.version>3.8.0</commons-net.version>
  55. <jsch.version>0.1.55</jsch.version>
  56. <tika-core.version>2.4.1</tika-core.version>
  57. <!-- 三方云服务相关 -->
  58. <minio.version>8.2.2</minio.version>
  59. <aliyun-java-sdk-core.version>4.5.25</aliyun-java-sdk-core.version>
  60. <aliyun-java-sdk-dysmsapi.version>2.1.0</aliyun-java-sdk-dysmsapi.version>
  61. <tencentcloud-sdk-java.version>3.1.471</tencentcloud-sdk-java.version>
  62. <yunpian-java-sdk.version>1.2.7</yunpian-java-sdk.version>
  63. <justauth.version>1.4.0</justauth.version>
  64. <jimureport.version>1.5.2</jimureport.version>
  65. <xercesImpl.version>2.12.0</xercesImpl.version>
  66. </properties>
  67. <dependencyManagement>
  68. <dependencies>
  69. <!-- 统一依赖管理 -->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-dependencies</artifactId>
  73. <version>${spring.boot.version}</version>
  74. <type>pom</type>
  75. <scope>import</scope>
  76. </dependency>
  77. <!-- 业务组件 -->
  78. <dependency>
  79. <groupId>com.zqt.ccj</groupId>
  80. <artifactId>patrol-spring-boot-starter-banner</artifactId>
  81. <version>${revision}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.zqt.ccj</groupId>
  85. <artifactId>patrol-spring-boot-starter-biz-operatelog</artifactId>
  86. <version>${revision}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.zqt.ccj</groupId>
  90. <artifactId>patrol-spring-boot-starter-biz-dict</artifactId>
  91. <version>${revision}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.zqt.ccj</groupId>
  95. <artifactId>patrol-spring-boot-starter-biz-sms</artifactId>
  96. <version>${revision}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.zqt.ccj</groupId>
  100. <artifactId>patrol-spring-boot-starter-biz-pay</artifactId>
  101. <version>${revision}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.zqt.ccj</groupId>
  105. <artifactId>patrol-spring-boot-starter-biz-weixin</artifactId>
  106. <version>${revision}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.zqt.ccj</groupId>
  110. <artifactId>patrol-spring-boot-starter-biz-tenant</artifactId>
  111. <version>${revision}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.zqt.ccj</groupId>
  115. <artifactId>patrol-spring-boot-starter-biz-data-permission</artifactId>
  116. <version>${revision}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.zqt.ccj</groupId>
  120. <artifactId>patrol-spring-boot-starter-biz-social</artifactId>
  121. <version>${revision}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.zqt.ccj</groupId>
  125. <artifactId>patrol-spring-boot-starter-biz-error-code</artifactId>
  126. <version>${revision}</version>
  127. </dependency>
  128. <!-- Spring 核心 -->
  129. <dependency>
  130. <!-- 用于生成自定义的 Spring @ConfigurationProperties 配置类的说明文件 -->
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-configuration-processor</artifactId>
  133. <version>${spring.boot.version}</version>
  134. </dependency>
  135. <!-- Web 相关 -->
  136. <dependency>
  137. <groupId>com.zqt.ccj</groupId>
  138. <artifactId>patrol-spring-boot-starter-web</artifactId>
  139. <version>${revision}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.zqt.ccj</groupId>
  143. <artifactId>patrol-spring-boot-starter-security</artifactId>
  144. <version>${revision}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.github.xiaoymin</groupId>
  148. <artifactId>knife4j-spring-boot-starter</artifactId>
  149. <version>${knife4j.version}</version>
  150. <exclusions>
  151. <exclusion>
  152. <artifactId>mapstruct</artifactId>
  153. <groupId>org.mapstruct</groupId> <!-- 避免冲突 -->
  154. </exclusion>
  155. <exclusion>
  156. <artifactId>guava</artifactId>
  157. <groupId>com.google.guava</groupId>
  158. </exclusion>
  159. <exclusion>
  160. <artifactId>swagger-annotations</artifactId>
  161. <groupId>io.swagger</groupId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <dependency>
  166. <groupId>io.swagger</groupId>
  167. <artifactId>swagger-annotations</artifactId>
  168. <version>${swagger-annotations.version}</version>
  169. </dependency>
  170. <!-- DB 相关 -->
  171. <dependency>
  172. <groupId>com.zqt.ccj</groupId>
  173. <artifactId>patrol-spring-boot-starter-mybatis</artifactId>
  174. <version>${revision}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.alibaba</groupId>
  178. <artifactId>druid-spring-boot-starter</artifactId>
  179. <version>${druid.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.baomidou</groupId>
  183. <artifactId>mybatis-plus-boot-starter</artifactId>
  184. <version>${mybatis-plus.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.baomidou</groupId>
  188. <artifactId>mybatis-plus-generator</artifactId> <!-- 代码生成器,使用它解析表结构 -->
  189. <version>${mybatis-plus-generator.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.baomidou</groupId>
  193. <artifactId>dynamic-datasource-spring-boot-starter</artifactId> <!-- 多数据源 -->
  194. <version>${dynamic-datasource.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>com.zqt.ccj</groupId>
  198. <artifactId>patrol-spring-boot-starter-redis</artifactId>
  199. <version>${revision}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.redisson</groupId>
  203. <artifactId>redisson-spring-boot-starter</artifactId>
  204. <version>${redisson.version}</version>
  205. </dependency>
  206. <!-- Config 配置中心相关 -->
  207. <dependency>
  208. <groupId>com.zqt.ccj</groupId>
  209. <artifactId>patrol-spring-boot-starter-config</artifactId>
  210. <version>${revision}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>com.ctrip.framework.apollo</groupId>
  214. <artifactId>apollo-client</artifactId> <!-- 引入 Apollo Client 库,实现内嵌的配置中心 -->
  215. <version>${apollo.version}</version>
  216. </dependency>
  217. <!-- Job 定时任务相关 -->
  218. <dependency>
  219. <groupId>com.zqt.ccj</groupId>
  220. <artifactId>patrol-spring-boot-starter-job</artifactId>
  221. <version>${revision}</version>
  222. </dependency>
  223. <!-- 消息队列相关 -->
  224. <dependency>
  225. <groupId>com.zqt.ccj</groupId>
  226. <artifactId>patrol-spring-boot-starter-mq</artifactId>
  227. <version>${revision}</version>
  228. </dependency>
  229. <!-- 服务保障相关 -->
  230. <dependency>
  231. <groupId>com.zqt.ccj</groupId>
  232. <artifactId>patrol-spring-boot-starter-protection</artifactId>
  233. <version>${revision}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.baomidou</groupId>
  237. <artifactId>lock4j-redisson-spring-boot-starter</artifactId>
  238. <version>${lock4j.version}</version>
  239. <exclusions>
  240. <exclusion>
  241. <artifactId>redisson-spring-boot-starter</artifactId>
  242. <groupId>org.redisson</groupId>
  243. </exclusion>
  244. </exclusions>
  245. </dependency>
  246. <dependency>
  247. <groupId>io.github.resilience4j</groupId>
  248. <artifactId>resilience4j-ratelimiter</artifactId>
  249. <version>${resilience4j.version}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>io.github.resilience4j</groupId>
  253. <artifactId>resilience4j-spring-boot2</artifactId>
  254. <version>${resilience4j.version}</version>
  255. </dependency>
  256. <!-- 监控相关 -->
  257. <dependency>
  258. <groupId>com.zqt.ccj</groupId>
  259. <artifactId>patrol-spring-boot-starter-monitor</artifactId>
  260. <version>${revision}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.skywalking</groupId>
  264. <artifactId>apm-toolkit-trace</artifactId>
  265. <version>${skywalking.version}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.skywalking</groupId>
  269. <artifactId>apm-toolkit-logback-1.x</artifactId>
  270. <version>${skywalking.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.skywalking</groupId>
  274. <artifactId>apm-toolkit-opentracing</artifactId>
  275. <version>${skywalking.version}</version>
  276. <!-- <exclusions>-->
  277. <!-- <exclusion>-->
  278. <!-- <artifactId>opentracing-api</artifactId>-->
  279. <!-- <groupId>io.opentracing</groupId>-->
  280. <!-- </exclusion>-->
  281. <!-- <exclusion>-->
  282. <!-- <artifactId>opentracing-util</artifactId>-->
  283. <!-- <groupId>io.opentracing</groupId>-->
  284. <!-- </exclusion>-->
  285. <!-- </exclusions>-->
  286. </dependency>
  287. <dependency>
  288. <groupId>io.opentracing</groupId>
  289. <artifactId>opentracing-api</artifactId>
  290. <version>${opentracing.version}</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>io.opentracing</groupId>
  294. <artifactId>opentracing-util</artifactId>
  295. <version>${opentracing.version}</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>io.opentracing</groupId>
  299. <artifactId>opentracing-noop</artifactId>
  300. <version>${opentracing.version}</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>de.codecentric</groupId>
  304. <artifactId>spring-boot-admin-starter-server</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
  305. <version>${spring-boot-admin.version}</version>
  306. </dependency>
  307. <dependency>
  308. <groupId>de.codecentric</groupId>
  309. <artifactId>spring-boot-admin-starter-client</artifactId> <!-- 实现 Spring Boot Admin Server 服务端 -->
  310. <version>${spring-boot-admin.version}</version>
  311. </dependency>
  312. <!-- Test 测试相关 -->
  313. <dependency>
  314. <groupId>com.zqt.ccj</groupId>
  315. <artifactId>patrol-spring-boot-starter-test</artifactId>
  316. <version>${revision}</version>
  317. <scope>test</scope>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.mockito</groupId>
  321. <artifactId>mockito-inline</artifactId>
  322. <version>${mockito-inline.version}</version> <!-- 支持 Mockito 的 final 类与 static 方法的 mock -->
  323. </dependency>
  324. <dependency>
  325. <groupId>org.springframework.boot</groupId>
  326. <artifactId>spring-boot-starter-test</artifactId>
  327. <version>${spring.boot.version}</version>
  328. <exclusions>
  329. <exclusion>
  330. <artifactId>asm</artifactId>
  331. <groupId>org.ow2.asm</groupId>
  332. </exclusion>
  333. <exclusion>
  334. <groupId>org.mockito</groupId>
  335. <artifactId>mockito-core</artifactId>
  336. </exclusion>
  337. </exclusions>
  338. </dependency>
  339. <dependency>
  340. <groupId>com.github.fppt</groupId> <!-- 单元测试,我们采用内嵌的 Redis 数据库 -->
  341. <artifactId>jedis-mock</artifactId>
  342. <version>${jedis-mock.version}</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>uk.co.jemos.podam</groupId> <!-- 单元测试,随机生成 POJO 类 -->
  346. <artifactId>podam</artifactId>
  347. <version>${podam.version}</version>
  348. </dependency>
  349. <!-- 工作流相关 -->
  350. <dependency>
  351. <groupId>com.zqt.ccj</groupId>
  352. <artifactId>patrol-spring-boot-starter-flowable</artifactId>
  353. <version>${revision}</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>org.flowable</groupId>
  357. <artifactId>flowable-spring-boot-starter-process</artifactId>
  358. <version>${flowable.version}</version>
  359. </dependency>
  360. <dependency>
  361. <groupId>org.flowable</groupId>
  362. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  363. <version>${flowable.version}</version>
  364. </dependency>
  365. <!-- 工作流相关结束 -->
  366. <!-- 工具类相关 -->
  367. <dependency>
  368. <groupId>com.zqt.ccj</groupId>
  369. <artifactId>patrol-common</artifactId>
  370. <version>${revision}</version>
  371. </dependency>
  372. <dependency>
  373. <groupId>com.github.ulisesbocchio</groupId>
  374. <artifactId>jasypt-spring-boot-starter</artifactId> <!-- 加解密 -->
  375. <version>${jasypt-spring-boot-starter.version}</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>com.zqt.ccj</groupId>
  379. <artifactId>patrol-spring-boot-starter-excel</artifactId>
  380. <version>${revision}</version>
  381. </dependency>
  382. <dependency>
  383. <groupId>org.projectlombok</groupId>
  384. <artifactId>lombok</artifactId>
  385. <version>${lombok.version}</version>
  386. </dependency>
  387. <dependency>
  388. <groupId>org.mapstruct</groupId>
  389. <artifactId>mapstruct</artifactId> <!-- use mapstruct-jdk8 for Java 8 or higher -->
  390. <version>${mapstruct.version}</version>
  391. </dependency>
  392. <dependency>
  393. <groupId>org.mapstruct</groupId>
  394. <artifactId>mapstruct-jdk8</artifactId>
  395. <version>${mapstruct.version}</version>
  396. </dependency>
  397. <dependency>
  398. <groupId>org.mapstruct</groupId>
  399. <artifactId>mapstruct-processor</artifactId>
  400. <version>${mapstruct.version}</version>
  401. </dependency>
  402. <dependency>
  403. <groupId>cn.hutool</groupId>
  404. <artifactId>hutool-all</artifactId>
  405. <version>${hutool.version}</version>
  406. </dependency>
  407. <dependency>
  408. <groupId>com.alibaba</groupId>
  409. <artifactId>easyexcel</artifactId>
  410. <version>${easyexcel.verion}</version>
  411. </dependency>
  412. <dependency>
  413. <groupId>org.apache.tika</groupId>
  414. <artifactId>tika-core</artifactId> <!-- 文件类型的识别 -->
  415. <version>${tika-core.version}</version>
  416. </dependency>
  417. <dependency>
  418. <groupId>org.apache.velocity</groupId>
  419. <artifactId>velocity-engine-core</artifactId>
  420. <version>${velocity.version}</version>
  421. </dependency>
  422. <dependency>
  423. <groupId>com.alibaba</groupId>
  424. <artifactId>fastjson</artifactId>
  425. <version>${fastjson.version}</version>
  426. </dependency>
  427. <dependency>
  428. <groupId>cn.smallbun.screw</groupId>
  429. <artifactId>screw-core</artifactId> <!-- 实现数据库文档 -->
  430. <version>${screw.version}</version>
  431. <exclusions>
  432. <exclusion>
  433. <groupId>org.freemarker</groupId>
  434. <artifactId>freemarker</artifactId> <!-- 移除 Freemarker 依赖,采用 Velocity 作为模板引擎 -->
  435. </exclusion>
  436. <exclusion>
  437. <groupId>com.alibaba</groupId>
  438. <artifactId>fastjson</artifactId> <!-- 最新版screw-core1.0.5依赖fastjson1.2.73存在漏洞,移除。 -->
  439. </exclusion>
  440. </exclusions>
  441. </dependency>
  442. <dependency>
  443. <groupId>com.google.guava</groupId>
  444. <artifactId>guava</artifactId>
  445. <version>${guava.version}</version>
  446. </dependency>
  447. <dependency>
  448. <groupId>com.google.inject</groupId>
  449. <artifactId>guice</artifactId>
  450. <version>${guice.version}</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>com.alibaba</groupId>
  454. <artifactId>transmittable-thread-local</artifactId> <!-- 解决 ThreadLocal 父子线程的传值问题 -->
  455. <version>${transmittable-thread-local.version}</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>commons-net</groupId>
  459. <artifactId>commons-net</artifactId> <!-- 解决 ftp 连接 -->
  460. <version>${commons-net.version}</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>com.jcraft</groupId>
  464. <artifactId>jsch</artifactId> <!-- 解决 sftp 连接 -->
  465. <version>${jsch.version}</version>
  466. </dependency>
  467. <!-- 三方云服务相关 -->
  468. <dependency>
  469. <groupId>com.zqt.ccj</groupId>
  470. <artifactId>patrol-spring-boot-starter-file</artifactId>
  471. <version>${revision}</version>
  472. </dependency>
  473. <dependency>
  474. <groupId>io.minio</groupId>
  475. <artifactId>minio</artifactId>
  476. <version>${minio.version}</version>
  477. </dependency>
  478. <!-- SMS SDK begin -->
  479. <dependency>
  480. <groupId>com.yunpian.sdk</groupId>
  481. <artifactId>yunpian-java-sdk</artifactId>
  482. <version>${yunpian-java-sdk.version}</version>
  483. </dependency>
  484. <dependency>
  485. <groupId>com.aliyun</groupId>
  486. <artifactId>aliyun-java-sdk-core</artifactId>
  487. <version>${aliyun-java-sdk-core.version}</version>
  488. <exclusions>
  489. <exclusion>
  490. <artifactId>opentracing-api</artifactId>
  491. <groupId>io.opentracing</groupId>
  492. </exclusion>
  493. <exclusion>
  494. <artifactId>opentracing-util</artifactId>
  495. <groupId>io.opentracing</groupId>
  496. </exclusion>
  497. </exclusions>
  498. </dependency>
  499. <dependency>
  500. <groupId>com.aliyun</groupId>
  501. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  502. <version>${aliyun-java-sdk-dysmsapi.version}</version>
  503. </dependency>
  504. <dependency>
  505. <groupId>com.tencentcloudapi</groupId>
  506. <artifactId>tencentcloud-sdk-java</artifactId>
  507. <version>${tencentcloud-sdk-java.version}</version>
  508. </dependency>
  509. <!-- SMS SDK end -->
  510. <dependency>
  511. <groupId>com.xkcoding.justauth</groupId>
  512. <artifactId>justauth-spring-boot-starter</artifactId> <!-- 社交登陆(例如说,个人微信、企业微信等等) -->
  513. <version>${justauth.version}</version>
  514. </dependency>
  515. <!-- 积木报表-->
  516. <dependency>
  517. <groupId>org.jeecgframework.jimureport</groupId>
  518. <artifactId>jimureport-spring-boot-starter</artifactId>
  519. <version>${jimureport.version}</version>
  520. </dependency>
  521. <dependency>
  522. <groupId>xerces</groupId>
  523. <artifactId>xercesImpl</artifactId>
  524. <version>${xercesImpl.version}</version>
  525. </dependency>
  526. </dependencies>
  527. </dependencyManagement>
  528. </project>