pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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</groupId>
  139. <artifactId>spring-context-support</artifactId>
  140. </dependency>
  141. <!--swagger2-->
  142. <dependency>
  143. <groupId>io.springfox</groupId>
  144. <artifactId>springfox-swagger2</artifactId>
  145. <version>2.6.1</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>io.springfox</groupId>
  149. <artifactId>springfox-swagger-ui</artifactId>
  150. <version>2.6.1</version>
  151. </dependency>
  152. <!-- 添加redis支持-->
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter-data-redis</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>redis.clients</groupId>
  159. <artifactId>jedis</artifactId>
  160. <version>2.9.0</version>
  161. </dependency>
  162. <!-- xss过滤组件 -->
  163. <dependency>
  164. <groupId>org.jsoup</groupId>
  165. <artifactId>jsoup</artifactId>
  166. <version>1.9.2</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.netflix.feign</groupId>
  170. <artifactId>feign-core</artifactId>
  171. <version>8.18.0</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.netflix.feign</groupId>
  175. <artifactId>feign-jackson</artifactId>
  176. <version>8.18.0</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.alibaba</groupId>
  180. <artifactId>easyexcel</artifactId>
  181. <version>2.2.10</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.projectlombok</groupId>
  185. <artifactId>lombok</artifactId>
  186. <version>1.18.12</version>
  187. <scope>provided</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apache.poi</groupId>
  191. <artifactId>poi</artifactId>
  192. <version>3.17</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.poi</groupId>
  196. <artifactId>poi-ooxml</artifactId>
  197. <version>3.17</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.poi</groupId>
  201. <artifactId>ooxml-schemas</artifactId>
  202. <version>1.4</version>
  203. </dependency>
  204. <!--国密
  205. <dependency>
  206. <groupId>com.iwall.gmsec</groupId>
  207. <artifactId>GMSec</artifactId>
  208. <version>1.0-SNAPSHOT</version>
  209. </dependency>-->
  210. <dependency>
  211. <groupId>org.bouncycastle</groupId>
  212. <artifactId>bcprov-jdk15on</artifactId>
  213. <version>1.64</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.bouncycastle</groupId>
  217. <artifactId>bcpkix-jdk15on</artifactId>
  218. <version>1.64</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.squareup.okhttp3</groupId>
  222. <artifactId>okhttp</artifactId>
  223. <version>3.6.0</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.github.whvcse</groupId>
  227. <artifactId>easy-captcha</artifactId>
  228. <version>1.6.2</version>
  229. </dependency>
  230. <!--配置文件警告去除-->
  231. <dependency>
  232. <groupId>org.springframework.boot</groupId>
  233. <artifactId>spring-boot-configuration-processor</artifactId>
  234. <optional>true</optional>
  235. </dependency>
  236. <!--http common-->
  237. <dependency>
  238. <groupId>org.apache.httpcomponents</groupId>
  239. <artifactId>httpcore</artifactId>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.apache.httpcomponents</groupId>
  243. <artifactId>httpclient</artifactId>
  244. </dependency>
  245. <!--iwall 证书sdk-->
  246. <dependency>
  247. <groupId>cn.com.iwall</groupId>
  248. <artifactId>iwallca-client</artifactId>
  249. <version>0.0.2-SNAPSHOT</version>
  250. <scope>system</scope>
  251. <systemPath>${project.basedir}/src/lib/iwallca-client-0.0.2-SNAPSHOT.jar</systemPath>
  252. </dependency>
  253. </dependencies>
  254. <build>
  255. <plugins>
  256. <plugin>
  257. <groupId>org.springframework.boot</groupId>
  258. <artifactId>spring-boot-maven-plugin</artifactId>
  259. <configuration>
  260. <executable>true</executable>
  261. <includeSystemScope>true</includeSystemScope>
  262. </configuration>
  263. </plugin>
  264. </plugins>
  265. </build>
  266. </project>