pom.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.12.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.guoke</groupId>
  12. <artifactId>DFMEA_V2</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>DFMEA_V2</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  18. <java.version>1.8</java.version>
  19. <mybatis.spring.version>2.1.4</mybatis.spring.version>
  20. <mybatis-plus.version>3.5.1</mybatis-plus.version>
  21. <hutool.version>5.6.5</hutool.version>
  22. <commons-lang3.version>3.12.0</commons-lang3.version>
  23. <commons-beanutils.version>1.9.4</commons-beanutils.version>
  24. <redisson.version>3.15.6</redisson.version>
  25. <guava.version>30.1.1-jre</guava.version>
  26. <poi.version>3.8</poi.version>
  27. <joda-time.version>2.1</joda-time.version>
  28. <commons-lang.version>2.6</commons-lang.version>
  29. <testng.version>6.10</testng.version>
  30. <shiro.version>1.6.0</shiro.version>
  31. <shiro-redis.version>3.3.1</shiro-redis.version>
  32. <fastjson.version>1.2.76</fastjson.version>
  33. <fileupload.version>1.4</fileupload.version>
  34. <swagger.version>3.0.0</swagger.version>
  35. <swagger-ui.version>3.0.2</swagger-ui.version>
  36. <dynamic.version>3.4.1</dynamic.version>
  37. </properties>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. <exclusions>
  48. <exclusion>
  49. <artifactId>json-path</artifactId>
  50. <groupId>com.jayway.jsonpath</groupId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-web</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-validation</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-security</artifactId>
  65. </dependency>
  66. <!-- aop -->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-aop</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>mysql</groupId>
  77. <artifactId>mysql-connector-java</artifactId>
  78. <scope>runtime</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.mybatis.spring.boot</groupId>
  82. <artifactId>mybatis-spring-boot-starter</artifactId>
  83. <version>${mybatis.spring.version}</version>
  84. </dependency>
  85. <!--mybatis-plus-->
  86. <dependency>
  87. <groupId>com.baomidou</groupId>
  88. <artifactId>mybatis-plus-boot-starter</artifactId>
  89. <version>${mybatis-plus.version}</version>
  90. <exclusions>
  91. <exclusion>
  92. <artifactId>mybatis-plus-extension</artifactId>
  93. <groupId>com.baomidou</groupId>
  94. </exclusion>
  95. </exclusions>
  96. </dependency>
  97. <!-- redisson -->
  98. <dependency>
  99. <groupId>org.redisson</groupId>
  100. <artifactId>redisson-spring-boot-starter</artifactId>
  101. <version>${redisson.version}</version>
  102. </dependency>
  103. <!-- hutools -->
  104. <dependency>
  105. <groupId>cn.hutool</groupId>
  106. <artifactId>hutool-all</artifactId>
  107. <version>${hutool.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-lang3</artifactId>
  112. <version>${commons-lang3.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-beanutils</groupId>
  116. <artifactId>commons-beanutils</artifactId>
  117. <version>${commons-beanutils.version}</version>
  118. </dependency>
  119. <!-- guava -->
  120. <dependency>
  121. <groupId>com.google.guava</groupId>
  122. <artifactId>guava</artifactId>
  123. <version>${guava.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.poi</groupId>
  127. <artifactId>poi</artifactId>
  128. <version>${poi.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.poi</groupId>
  132. <artifactId>poi-ooxml</artifactId>
  133. <version>${poi.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.google.code.gson</groupId>
  137. <artifactId>gson</artifactId>
  138. </dependency>
  139. <dependency>
  140. <groupId>joda-time</groupId>
  141. <artifactId>joda-time</artifactId>
  142. <version>${joda-time.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.slf4j</groupId>
  146. <artifactId>log4j-over-slf4j</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-lang</groupId>
  150. <artifactId>commons-lang</artifactId>
  151. <version>${commons-lang.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.httpcomponents</groupId>
  155. <artifactId>httpcore</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.httpcomponents</groupId>
  159. <artifactId>httpclient</artifactId>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.testng</groupId>
  163. <artifactId>testng</artifactId>
  164. <version>${testng.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.shiro</groupId>
  168. <artifactId>shiro-core</artifactId>
  169. <version>${shiro.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.shiro</groupId>
  173. <artifactId>shiro-web</artifactId>
  174. <version>${shiro.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.shiro</groupId>
  178. <artifactId>shiro-spring</artifactId>
  179. <version>${shiro.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.crazycake</groupId>
  183. <artifactId>shiro-redis</artifactId>
  184. <version>${shiro-redis.version}</version>
  185. <exclusions>
  186. <exclusion>
  187. <artifactId>commons-beanutils</artifactId>
  188. <groupId>commons-beanutils</groupId>
  189. </exclusion>
  190. <exclusion>
  191. <artifactId>asm</artifactId>
  192. <groupId>org.ow2.asm</groupId>
  193. </exclusion>
  194. <exclusion>
  195. <artifactId>commons-collections</artifactId>
  196. <groupId>commons-collections</groupId>
  197. </exclusion>
  198. <exclusion>
  199. <artifactId>commons-digester</artifactId>
  200. <groupId>commons-digester</groupId>
  201. </exclusion>
  202. <exclusion>
  203. <artifactId>commons-io</artifactId>
  204. <groupId>commons-io</groupId>
  205. </exclusion>
  206. <exclusion>
  207. <artifactId>commons-lang</artifactId>
  208. <groupId>commons-lang</groupId>
  209. </exclusion>
  210. <exclusion>
  211. <artifactId>commons-logging</artifactId>
  212. <groupId>commons-logging</groupId>
  213. </exclusion>
  214. <exclusion>
  215. <artifactId>dom4j</artifactId>
  216. <groupId>dom4j</groupId>
  217. </exclusion>
  218. <exclusion>
  219. <artifactId>doxia-core</artifactId>
  220. <groupId>org.apache.maven.doxia</groupId>
  221. </exclusion>
  222. <exclusion>
  223. <artifactId>doxia-decoration-model</artifactId>
  224. <groupId>org.apache.maven.doxia</groupId>
  225. </exclusion>
  226. <exclusion>
  227. <artifactId>doxia-logging-api</artifactId>
  228. <groupId>org.apache.maven.doxia</groupId>
  229. </exclusion>
  230. <exclusion>
  231. <artifactId>doxia-sink-api</artifactId>
  232. <groupId>org.apache.maven.doxia</groupId>
  233. </exclusion>
  234. <exclusion>
  235. <artifactId>doxia-site-renderer</artifactId>
  236. <groupId>org.apache.maven.doxia</groupId>
  237. </exclusion>
  238. <exclusion>
  239. <artifactId>guava</artifactId>
  240. <groupId>com.google.guava</groupId>
  241. </exclusion>
  242. <exclusion>
  243. <artifactId>jsr305</artifactId>
  244. <groupId>com.google.code.findbugs</groupId>
  245. </exclusion>
  246. <exclusion>
  247. <artifactId>maven-artifact</artifactId>
  248. <groupId>org.apache.maven</groupId>
  249. </exclusion>
  250. <exclusion>
  251. <artifactId>maven-common-artifact-filters</artifactId>
  252. <groupId>org.apache.maven.shared</groupId>
  253. </exclusion>
  254. <exclusion>
  255. <artifactId>maven-core</artifactId>
  256. <groupId>org.apache.maven</groupId>
  257. </exclusion>
  258. <exclusion>
  259. <artifactId>maven-model</artifactId>
  260. <groupId>org.apache.maven</groupId>
  261. </exclusion>
  262. <exclusion>
  263. <artifactId>maven-plugin-api</artifactId>
  264. <groupId>org.apache.maven</groupId>
  265. </exclusion>
  266. <exclusion>
  267. <artifactId>maven-repository-metadata</artifactId>
  268. <groupId>org.apache.maven</groupId>
  269. </exclusion>
  270. <exclusion>
  271. <artifactId>maven-settings</artifactId>
  272. <groupId>org.apache.maven</groupId>
  273. </exclusion>
  274. <exclusion>
  275. <artifactId>maven-shared-utils</artifactId>
  276. <groupId>org.apache.maven.shared</groupId>
  277. </exclusion>
  278. <exclusion>
  279. <artifactId>plexus-archiver</artifactId>
  280. <groupId>org.codehaus.plexus</groupId>
  281. </exclusion>
  282. <exclusion>
  283. <artifactId>plexus-component-annotations</artifactId>
  284. <groupId>org.codehaus.plexus</groupId>
  285. </exclusion>
  286. <exclusion>
  287. <artifactId>plexus-container-default</artifactId>
  288. <groupId>org.codehaus.plexus</groupId>
  289. </exclusion>
  290. <exclusion>
  291. <artifactId>plexus-interpolation</artifactId>
  292. <groupId>org.codehaus.plexus</groupId>
  293. </exclusion>
  294. <exclusion>
  295. <artifactId>plexus-java</artifactId>
  296. <groupId>org.codehaus.plexus</groupId>
  297. </exclusion>
  298. <exclusion>
  299. <artifactId>plexus-utils</artifactId>
  300. <groupId>org.codehaus.plexus</groupId>
  301. </exclusion>
  302. <exclusion>
  303. <artifactId>qdox</artifactId>
  304. <groupId>com.thoughtworks.qdox</groupId>
  305. </exclusion>
  306. <exclusion>
  307. <artifactId>wagon-provider-api</artifactId>
  308. <groupId>org.apache.maven.wagon</groupId>
  309. </exclusion>
  310. </exclusions>
  311. </dependency>
  312. <dependency>
  313. <groupId>commons-validator</groupId>
  314. <artifactId>commons-validator</artifactId>
  315. <version>1.3.1</version>
  316. <exclusions>
  317. <exclusion>
  318. <artifactId>commons-beanutils</artifactId>
  319. <groupId>commons-beanutils</groupId>
  320. </exclusion>
  321. <exclusion>
  322. <artifactId>commons-collections</artifactId>
  323. <groupId>commons-collections</groupId>
  324. </exclusion>
  325. <exclusion>
  326. <artifactId>commons-logging</artifactId>
  327. <groupId>commons-logging</groupId>
  328. </exclusion>
  329. </exclusions>
  330. </dependency>
  331. <dependency>
  332. <groupId>org.jsoup</groupId>
  333. <artifactId>jsoup</artifactId>
  334. <version>1.12.1</version>
  335. </dependency>
  336. <!-- Redis -->
  337. <dependency>
  338. <groupId>org.springframework.boot</groupId>
  339. <artifactId>spring-boot-starter-data-redis</artifactId>
  340. </dependency>
  341. <!-- mq -->
  342. <!-- <dependency>
  343. <groupId>org.springframework.boot</groupId>
  344. <artifactId>spring-boot-starter-amqp</artifactId>
  345. </dependency> -->
  346. <dependency>
  347. <groupId>io.springfox</groupId>
  348. <artifactId>springfox-boot-starter</artifactId>
  349. <version>${swagger.version}</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>com.github.xiaoymin</groupId>
  353. <artifactId>knife4j-spring-boot-starter</artifactId>
  354. <version>${swagger-ui.version}</version>
  355. </dependency>
  356. <!--<dependency>
  357. <groupId>io.springfox</groupId>
  358. <artifactId>springfox-swagger2</artifactId>
  359. <version>2.9.2</version>
  360. </dependency>
  361. <dependency>
  362. <groupId>io.springfox</groupId>
  363. <artifactId>springfox-swagger-ui</artifactId>
  364. <version>2.9.2</version>
  365. </dependency>
  366. <dependency>
  367. <groupId>com.github.xiaoymin</groupId>
  368. <artifactId>swagger-bootstrap-ui</artifactId>
  369. <version>1.9.6</version>
  370. </dependency>-->
  371. <dependency>
  372. <groupId>com.alibaba</groupId>
  373. <artifactId>fastjson</artifactId>
  374. <version>${fastjson.version}</version>
  375. </dependency>
  376. <dependency>
  377. <groupId>com.fasterxml.jackson.core</groupId>
  378. <artifactId>jackson-databind</artifactId>
  379. </dependency>
  380. <dependency>
  381. <groupId>com.jayway.jsonpath</groupId>
  382. <artifactId>json-path</artifactId>
  383. <version>2.5.0</version>
  384. <exclusions>
  385. <exclusion>
  386. <artifactId>json-smart</artifactId>
  387. <groupId>net.minidev</groupId>
  388. </exclusion>
  389. </exclusions>
  390. </dependency>
  391. <dependency>
  392. <groupId>net.minidev</groupId>
  393. <artifactId>json-smart</artifactId>
  394. <version>2.3</version>
  395. </dependency>
  396. <dependency>
  397. <groupId>net.minidev</groupId>
  398. <artifactId>asm</artifactId>
  399. <version>1.0.2</version>
  400. </dependency>
  401. <!-- 跨域 -->
  402. <!--<dependency>
  403. <groupId>com.thetransactioncompany</groupId>
  404. <artifactId>cors-filter</artifactId>
  405. <version>2.9</version>
  406. </dependency>-->
  407. <dependency>
  408. <groupId>commons-fileupload</groupId>
  409. <artifactId>commons-fileupload</artifactId>
  410. <version>${fileupload.version}</version>
  411. </dependency>
  412. <dependency>
  413. <groupId>javax.servlet</groupId>
  414. <artifactId>javax.servlet-api</artifactId>
  415. <scope>provided</scope>
  416. </dependency>
  417. <!-- 多数据源 -->
  418. <dependency>
  419. <groupId>com.baomidou</groupId>
  420. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  421. <version>${dynamic.version}</version>
  422. <exclusions>
  423. <exclusion>
  424. <groupId>org.springframework.boot</groupId>
  425. <artifactId>spring-boot-starter-web</artifactId>
  426. </exclusion>
  427. </exclusions>
  428. </dependency>
  429. <dependency>
  430. <groupId>com.thoughtworks.xstream</groupId>
  431. <artifactId>xstream</artifactId>
  432. <version>1.4.10</version>
  433. </dependency>
  434. <!-- 引入Druid连接池 -->
  435. <dependency>
  436. <groupId>com.alibaba</groupId>
  437. <artifactId>druid-spring-boot-starter</artifactId>
  438. <version>1.1.23</version>
  439. </dependency>
  440. <!-- 引入Thymeleaf模板引擎 -->
  441. <dependency>
  442. <groupId>org.springframework.boot</groupId>
  443. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  444. </dependency>
  445. <!-- 代码生成 -->
  446. <dependency>
  447. <groupId>com.baomidou</groupId>
  448. <artifactId>mybatis-plus-generator</artifactId>
  449. <version>3.4.1</version>
  450. <exclusions>
  451. <exclusion>
  452. <artifactId>mybatis-spring</artifactId>
  453. <groupId>org.mybatis</groupId>
  454. </exclusion>
  455. </exclusions>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.apache.velocity</groupId>
  459. <artifactId>velocity-engine-core</artifactId>
  460. <version>2.3</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>org.activiti</groupId>
  464. <artifactId>activiti-engine</artifactId>
  465. <version>5.16.3</version>
  466. </dependency>
  467. <dependency>
  468. <groupId>org.apache.struts</groupId>
  469. <artifactId>struts2-core</artifactId>
  470. <version>2.3.32</version>
  471. </dependency>
  472. <dependency>
  473. <groupId>org.apache.struts</groupId>
  474. <artifactId>struts2-core</artifactId>
  475. <version>2.3.32</version>
  476. </dependency>
  477. <dependency>
  478. <groupId>net.sf.json-lib</groupId>
  479. <artifactId>json-lib</artifactId>
  480. <version>2.3</version>
  481. <classifier>jdk15</classifier>
  482. </dependency>
  483. <dependency>
  484. <groupId>org.rosuda.REngine</groupId>
  485. <artifactId>REngine</artifactId>
  486. <version>2.1.0</version>
  487. </dependency>
  488. <dependency>
  489. <groupId>org.rosuda.REngine</groupId>
  490. <artifactId>Rserve</artifactId>
  491. <version>1.8.1</version>
  492. </dependency>
  493. <dependency>
  494. <groupId>org.apache.commons</groupId>
  495. <artifactId>commons-math3</artifactId>
  496. <version>3.3</version>
  497. </dependency>
  498. <dependency>
  499. <groupId>javax.servlet.jsp</groupId>
  500. <artifactId>jsp-api</artifactId>
  501. <version>2.2</version>
  502. <scope>provided</scope>
  503. </dependency>
  504. <!-- 标准品 -->
  505. <dependency>
  506. <groupId>com.reliabench</groupId>
  507. <artifactId>rb-common</artifactId>
  508. <version>1.0-SNAPSHOT</version>
  509. <type>jar</type>
  510. </dependency>
  511. <dependency>
  512. <groupId>com.reliabench</groupId>
  513. <artifactId>rb-reliabase-bi</artifactId>
  514. <version>1.0-SNAPSHOT</version>
  515. <type>jar</type>
  516. </dependency>
  517. <dependency>
  518. <groupId>com.reliabench</groupId>
  519. <artifactId>rb-reliabase-di</artifactId>
  520. <version>1.0-SNAPSHOT</version>
  521. <type>jar</type>
  522. </dependency>
  523. <dependency>
  524. <groupId>com.reliabench</groupId>
  525. <artifactId>rb-platform-bi</artifactId>
  526. <version>1.0-SNAPSHOT</version>
  527. <type>jar</type>
  528. </dependency>
  529. <dependency>
  530. <groupId>com.reliabench</groupId>
  531. <artifactId>rb-platform-di</artifactId>
  532. <version>1.0-SNAPSHOT</version>
  533. <type>jar</type>
  534. </dependency>
  535. <dependency>
  536. <groupId>com.reliabench</groupId>
  537. <artifactId>rb-rfmea-bi</artifactId>
  538. <version>1.0-SNAPSHOT</version>
  539. <type>jar</type>
  540. </dependency>
  541. <dependency>
  542. <groupId>com.reliabench</groupId>
  543. <artifactId>rb-rfmea-di</artifactId>
  544. <version>1.0-SNAPSHOT</version>
  545. <type>jar</type>
  546. </dependency>
  547. <dependency>
  548. <groupId>com.reliabench</groupId>
  549. <artifactId>rb-identity-di</artifactId>
  550. <version>1.0-SNAPSHOT</version>
  551. <type>jar</type>
  552. </dependency>
  553. <dependency>
  554. <groupId>com.reliabench</groupId>
  555. <artifactId>rb-identity-bi</artifactId>
  556. <version>1.0-SNAPSHOT</version>
  557. <type>jar</type>
  558. </dependency>
  559. </dependencies>
  560. <build>
  561. <finalName>DFMEA_V2</finalName>
  562. <plugins>
  563. <plugin>
  564. <groupId>org.springframework.boot</groupId>
  565. <artifactId>spring-boot-maven-plugin</artifactId>
  566. <version>${spring-boot.version}</version>
  567. <configuration>
  568. <excludes>
  569. <exclude>
  570. <groupId>org.projectlombok</groupId>
  571. <artifactId>lombok</artifactId>
  572. </exclude>
  573. </excludes>
  574. </configuration>
  575. </plugin>
  576. </plugins>
  577. </build>
  578. </project>