pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.bootdo</groupId>
  5. <artifactId>cic-data-reportin</artifactId>
  6. <version>2.0.0</version>
  7. <packaging>jar</packaging>
  8. <name>cic-data-reportin</name>
  9. <description>Demo project for Spring Boot</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.0.3.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <mybatisplus-spring-boot-starter.version>1.0.4</mybatisplus-spring-boot-starter.version>
  21. <velocity.version>1.7</velocity.version>
  22. <activiti.version>5.22.0</activiti.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-aop</artifactId>
  37. </dependency>
  38. <!--web -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>net.sourceforge.nekohtml</groupId>
  49. <artifactId>nekohtml</artifactId>
  50. </dependency>
  51. <!--mybatis -->
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.mybatis</groupId>
  58. <artifactId>mybatis</artifactId>
  59. <version>3.4.4</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mybatis.spring.boot</groupId>
  63. <artifactId>mybatis-spring-boot-starter</artifactId>
  64. <version>1.1.1</version>
  65. </dependency>
  66. <!--druid -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid</artifactId>
  70. <version>1.0.28</version>
  71. </dependency>
  72. <!--commons -->
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. <version>3.6</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-configuration</groupId>
  80. <artifactId>commons-configuration</artifactId>
  81. <version>1.10</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-io</groupId>
  85. <artifactId>commons-io</artifactId>
  86. <version>2.5</version>
  87. </dependency>
  88. <!--shiro -->
  89. <dependency>
  90. <groupId>org.apache.shiro</groupId>
  91. <artifactId>shiro-core</artifactId>
  92. <version>1.3.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.shiro</groupId>
  96. <artifactId>shiro-spring</artifactId>
  97. <version>1.3.2</version>
  98. </dependency>
  99. <!-- shiro ehcache -->
  100. <dependency>
  101. <groupId>org.apache.shiro</groupId>
  102. <artifactId>shiro-ehcache</artifactId>
  103. <exclusions>
  104. <exclusion>
  105. <groupId>net.sf.ehcache</groupId>
  106. <artifactId>ehcache-core</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. <version>1.4.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.github.theborakompanioni</groupId>
  113. <artifactId>thymeleaf-extras-shiro</artifactId>
  114. <version>2.0.0</version>
  115. </dependency>
  116. <!-- utils -->
  117. <dependency>
  118. <groupId>com.alibaba</groupId>
  119. <artifactId>fastjson</artifactId>
  120. <version>1.2.31</version>
  121. </dependency>
  122. <!--velocity代码生成使用模板 -->
  123. <dependency>
  124. <groupId>org.apache.velocity</groupId>
  125. <artifactId>velocity</artifactId>
  126. <version>1.7</version>
  127. </dependency>
  128. <!-- ehchache -->
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-starter-cache</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>net.sf.ehcache</groupId>
  135. <artifactId>ehcache</artifactId>
  136. </dependency>
  137. <!--<dependency>-->
  138. <!--<groupId>org.springframework.boot</groupId>-->
  139. <!--<artifactId>spring-boot-starter-data-redis</artifactId>-->
  140. <!--</dependency>-->
  141. <!-- quartz -->
  142. <!--<dependency>-->
  143. <!--<groupId>org.springframework.boot</groupId>-->
  144. <!--<artifactId>spring-boot-starter-cache</artifactId>-->
  145. <!--</dependency>-->
  146. <!--<dependency>-->
  147. <!--<groupId>net.sf.ehcache</groupId>-->
  148. <!--<artifactId>ehcache</artifactId>-->
  149. <!--</dependency>-->
  150. <dependency>
  151. <groupId>org.quartz-scheduler</groupId>
  152. <artifactId>quartz</artifactId>
  153. <version>2.2.1</version>
  154. <exclusions>
  155. <exclusion>
  156. <artifactId>slf4j-api</artifactId>
  157. <groupId>org.slf4j</groupId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <!-- SpringWebSocket依赖 -->
  162. <dependency>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-starter-websocket</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.springframework</groupId>
  168. <artifactId>spring-context-support</artifactId>
  169. </dependency>
  170. <!-- <dependency>-->
  171. <!-- <groupId>org.springframework.boot</groupId>-->
  172. <!-- <artifactId>spring-boot-devtools</artifactId>-->
  173. <!-- <optional>true</optional>-->
  174. <!-- </dependency>-->
  175. <!--activiti-->
  176. <dependency>
  177. <groupId>org.activiti</groupId>
  178. <artifactId>activiti-engine</artifactId>
  179. <version>${activiti.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.activiti</groupId>
  183. <artifactId>activiti-spring</artifactId>
  184. <version>${activiti.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.activiti</groupId>
  188. <artifactId>activiti-modeler</artifactId>
  189. <version>${activiti.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.activiti</groupId>
  193. <artifactId>activiti-diagram-rest</artifactId>
  194. <version>${activiti.version}</version>
  195. </dependency>
  196. <!--swagger2-->
  197. <dependency>
  198. <groupId>io.springfox</groupId>
  199. <artifactId>springfox-swagger2</artifactId>
  200. <version>2.6.1</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>io.springfox</groupId>
  204. <artifactId>springfox-swagger-ui</artifactId>
  205. <version>2.6.1</version>
  206. </dependency>
  207. <!-- 添加redis支持-->
  208. <dependency>
  209. <groupId>org.springframework.boot</groupId>
  210. <artifactId>spring-boot-starter-data-redis</artifactId>
  211. </dependency>
  212. <dependency>
  213. <groupId>redis.clients</groupId>
  214. <artifactId>jedis</artifactId>
  215. <version>2.9.0</version>
  216. </dependency>
  217. <!-- xss过滤组件 -->
  218. <dependency>
  219. <groupId>org.jsoup</groupId>
  220. <artifactId>jsoup</artifactId>
  221. <version>1.9.2</version>
  222. </dependency>
  223. <!--war包部署需要-->
  224. <!--<dependency>-->
  225. <!--<groupId>org.springframework.boot</groupId>-->
  226. <!--<artifactId>spring-boot-starter-web</artifactId>-->
  227. <!--&lt;!&ndash; 移除嵌入式tomcat插件 &ndash;&gt;-->
  228. <!--<exclusions>-->
  229. <!--<exclusion>-->
  230. <!--<groupId>org.springframework.boot</groupId>-->
  231. <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
  232. <!--</exclusion>-->
  233. <!--</exclusions>-->
  234. <!--</dependency>-->
  235. <!--<dependency>-->
  236. <!--<groupId>javax.servlet</groupId>-->
  237. <!--<artifactId>javax.servlet-api</artifactId>-->
  238. <!--<version>3.1.0</version>-->
  239. <!--<scope>provided</scope>-->
  240. <!--</dependency>-->
  241. <dependency>
  242. <groupId>com.netflix.feign</groupId>
  243. <artifactId>feign-core</artifactId>
  244. <version>8.18.0</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>com.netflix.feign</groupId>
  248. <artifactId>feign-jackson</artifactId>
  249. <version>8.18.0</version>
  250. </dependency>
  251. <!-- <dependency>-->
  252. <!-- <groupId>org.springframework.cloud</groupId>-->
  253. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  254. <!-- <version>2.1.2.RELEASE</version>-->
  255. <!-- </dependency>-->
  256. <!-- <dependency>-->
  257. <!-- <groupId>org.apache.poi</groupId>-->
  258. <!-- <artifactId>poi</artifactId>-->
  259. <!-- <version>4.0.1</version>-->
  260. <!-- </dependency>-->
  261. <!-- <dependency>-->
  262. <!-- <groupId>org.apache.poi</groupId>-->
  263. <!-- <artifactId>poi-ooxml</artifactId>-->
  264. <!-- <version>4.0.1</version>-->
  265. <!-- </dependency>-->
  266. <!-- easyexcel相关依赖 -->
  267. <!-- <dependency>-->
  268. <!-- <groupId>com.alibaba</groupId>-->
  269. <!-- <artifactId>easyexcel</artifactId>-->
  270. <!-- <version>1.1.2-beta5</version>-->
  271. <!-- </dependency>-->
  272. <dependency>
  273. <groupId>com.alibaba</groupId>
  274. <artifactId>easyexcel</artifactId>
  275. <version>2.2.10</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.projectlombok</groupId>
  279. <artifactId>lombok</artifactId>
  280. <version>1.18.12</version>
  281. <scope>provided</scope>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.apache.poi</groupId>
  285. <artifactId>poi</artifactId>
  286. <version>3.17</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.apache.poi</groupId>
  290. <artifactId>poi-ooxml</artifactId>
  291. <version>3.17</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.apache.poi</groupId>
  295. <artifactId>ooxml-schemas</artifactId>
  296. <version>1.4</version>
  297. </dependency>
  298. <!--国密
  299. <dependency>
  300. <groupId>com.iwall.gmsec</groupId>
  301. <artifactId>GMSec</artifactId>
  302. <version>1.0-SNAPSHOT</version>
  303. </dependency>-->
  304. <dependency>
  305. <groupId>org.bouncycastle</groupId>
  306. <artifactId>bcprov-jdk15on</artifactId>
  307. <version>1.64</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.bouncycastle</groupId>
  311. <artifactId>bcpkix-jdk15on</artifactId>
  312. <version>1.64</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>com.squareup.okhttp3</groupId>
  316. <artifactId>okhttp</artifactId>
  317. <version>3.6.0</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>com.github.whvcse</groupId>
  321. <artifactId>easy-captcha</artifactId>
  322. <version>1.6.2</version>
  323. </dependency>
  324. <!--配置文件警告去除-->
  325. <dependency>
  326. <groupId>org.springframework.boot</groupId>
  327. <artifactId>spring-boot-configuration-processor</artifactId>
  328. <optional>true</optional>
  329. </dependency>
  330. <!--http common-->
  331. <dependency>
  332. <groupId>org.apache.httpcomponents</groupId>
  333. <artifactId>httpcore</artifactId>
  334. </dependency>
  335. <dependency>
  336. <groupId>org.apache.httpcomponents</groupId>
  337. <artifactId>httpclient</artifactId>
  338. </dependency>
  339. <!--iwall 证书sdk-->
  340. <dependency>
  341. <groupId>cn.com.iwall</groupId>
  342. <artifactId>iwallca-client</artifactId>
  343. <version>0.0.2-SNAPSHOT</version>
  344. <scope>system</scope>
  345. <systemPath>${project.basedir}/src/lib/iwallca-client-0.0.2-SNAPSHOT.jar</systemPath>
  346. </dependency>
  347. </dependencies>
  348. <build>
  349. <plugins>
  350. <plugin>
  351. <groupId>org.springframework.boot</groupId>
  352. <artifactId>spring-boot-maven-plugin</artifactId>
  353. <configuration>
  354. <executable>true</executable>
  355. <includeSystemScope>true</includeSystemScope>
  356. </configuration>
  357. </plugin>
  358. </plugins>
  359. </build>
  360. <!--<repositories>-->
  361. <!--<repository>-->
  362. <!--<id>public</id>-->
  363. <!--<name>aliyun nexus</name>-->
  364. <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
  365. <!--<releases>-->
  366. <!--<enabled>true</enabled>-->
  367. <!--</releases>-->
  368. <!--</repository>-->
  369. <!--</repositories>-->
  370. <!--<pluginRepositories>-->
  371. <!--<pluginRepository>-->
  372. <!--<id>public</id>-->
  373. <!--<name>aliyun nexus</name>-->
  374. <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
  375. <!--<releases>-->
  376. <!--<enabled>true</enabled>-->
  377. <!--</releases>-->
  378. <!--<snapshots>-->
  379. <!--<enabled>false</enabled>-->
  380. <!--</snapshots>-->
  381. <!--</pluginRepository>-->
  382. <!--</pluginRepositories>-->
  383. </project>