pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  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>platform</groupId>
  7. <artifactId>snd-escloud</artifactId>
  8. <packaging>war</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.5.4.RELEASE</version>
  14. </parent>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <thymeleaf.version>3.0.0.RELEASE</thymeleaf.version>
  19. <thymeleaf-layout-dialect.version>2.0.0</thymeleaf-layout-dialect.version>
  20. <shiro.version>1.3.2</shiro.version>
  21. <!-- <poi.version>3.9</poi.version>-->
  22. <thymeleaf-shiro.version>2.0.0</thymeleaf-shiro.version>
  23. <hutool.version>2.16.0</hutool.version>
  24. <commons-io.version>2.4</commons-io.version>
  25. <commons-lang3.version>3.5</commons-lang3.version>
  26. <commons-fileupload.version>1.3.2</commons-fileupload.version>
  27. <commons-codec.version>1.10</commons-codec.version>
  28. <commons-collections4.version>4.1</commons-collections4.version>
  29. <quartz.version>2.3.0</quartz.version>
  30. <lombok.version>1.16.14</lombok.version>
  31. <mybatis-spring-boot.version>1.3.0</mybatis-spring-boot.version>
  32. <pagehelper-spring-boot.version>1.1.2</pagehelper-spring-boot.version>
  33. <mapper-spring-boot.version>1.1.3</mapper-spring-boot.version>
  34. <java.version>1.8</java.version>
  35. <springfox.version>2.6.1</springfox.version>
  36. <httpclient.version>4.3.5</httpclient.version>
  37. <okhttp.version>3.8.0</okhttp.version>
  38. <jjwt.version>0.7.0</jjwt.version>
  39. <druid-spring-boot.version>1.1.2</druid-spring-boot.version>
  40. <feilong-platform.version>1.10.5</feilong-platform.version>
  41. <jwt.version>0.7.0</jwt.version>
  42. </properties>
  43. <repositories>
  44. <repository>
  45. <id>feilong-repository</id>
  46. <url>https://raw.github.com/venusdrogon/feilong-platform/repository</url>
  47. </repository>
  48. </repositories>
  49. <dependencies>
  50. <!--<dependency>-->
  51. <!--<groupId>org.flywaydb</groupId>-->
  52. <!--<artifactId>flyway-core</artifactId>-->
  53. <!--<version>5.0.3</version>-->
  54. <!--</dependency>-->
  55. <!--web支持-->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-web</artifactId>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-tomcat</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-tomcat</artifactId>
  69. <!--<scope>complie</scope>-->
  70. </dependency>
  71. <!--<dependency>-->
  72. <!--<groupId>org.springframework.boot</groupId>-->
  73. <!--<artifactId>spring-boot-starter-security</artifactId>-->
  74. <!--</dependency>-->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-jdbc</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-aop</artifactId>
  82. </dependency>
  83. <!-- Junit 单元测试 -->
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <!-- 支持 @ConfigurationProperties 注解 -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-configuration-processor</artifactId>
  93. <optional>true</optional>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-actuator</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.prometheus</groupId>
  101. <artifactId>simpleclient_spring_boot</artifactId>
  102. <version>0.0.26</version>
  103. </dependency>
  104. <!-- Email -->
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-mail</artifactId>
  108. </dependency>
  109. <!-- 添加redis支持-->
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-data-redis</artifactId>
  113. </dependency>
  114. <!--<dependency>-->
  115. <!--<groupId>org.springframework.boot</groupId>-->
  116. <!--<artifactId>spring-boot-starter-cache</artifactId>-->
  117. <!--</dependency>-->
  118. <!--mybatis-->
  119. <dependency>
  120. <groupId>org.mybatis.spring.boot</groupId>
  121. <artifactId>mybatis-spring-boot-starter</artifactId>
  122. <version>${mybatis-spring-boot.version}</version>
  123. </dependency>
  124. <!--daopper-->
  125. <dependency>
  126. <groupId>tk.mybatis</groupId>
  127. <artifactId>mapper-spring-boot-starter</artifactId>
  128. <version>${mapper-spring-boot.version}</version>
  129. </dependency>
  130. <!--pagehelper-->
  131. <dependency>
  132. <groupId>com.github.pagehelper</groupId>
  133. <artifactId>pagehelper-spring-boot-starter</artifactId>
  134. <version>${pagehelper-spring-boot.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>mysql</groupId>
  138. <artifactId>mysql-connector-java</artifactId>
  139. <scope>runtime</scope>
  140. </dependency>
  141. <!-- 数据库连接池 -->
  142. <dependency>
  143. <groupId>com.alibaba</groupId>
  144. <artifactId>druid-spring-boot-starter</artifactId>
  145. <version>${druid-spring-boot.version}</version>
  146. </dependency>
  147. <!-- 只需引入spring-boot-devtools 即可实现热部署 -->
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-devtools</artifactId>
  151. <optional>true</optional>
  152. </dependency>
  153. <!--thymeleaf模版支持-->
  154. <dependency>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  157. </dependency>
  158. <!-- shiro spring. -->
  159. <dependency>
  160. <groupId>org.apache.shiro</groupId>
  161. <artifactId>shiro-spring</artifactId>
  162. <version>${shiro.version}</version>
  163. </dependency>
  164. <!-- shiro 页面标签库 -->
  165. <dependency>
  166. <groupId>com.github.theborakompanioni</groupId>
  167. <artifactId>thymeleaf-extras-shiro</artifactId>
  168. <version>${thymeleaf-shiro.version}</version>
  169. </dependency>
  170. <!-- shiro ehcache -->
  171. <dependency>
  172. <groupId>org.apache.shiro</groupId>
  173. <artifactId>shiro-ehcache</artifactId>
  174. <version>${shiro.version}</version>
  175. </dependency>
  176. <!--
  177. 包含支持UI模版(Velocity,FreeMarker,JasperReports),
  178. 邮件服务,
  179. 脚本服务(JRuby),
  180. 缓存Cache(EHCache),
  181. 任务计划Scheduling(quartz)。
  182. -->
  183. <dependency>
  184. <groupId>org.springframework</groupId>
  185. <artifactId>spring-context-support</artifactId>
  186. </dependency>
  187. <dependency>
  188. <groupId>commons-io</groupId>
  189. <artifactId>commons-io</artifactId>
  190. <version>${commons-io.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.commons</groupId>
  194. <artifactId>commons-lang3</artifactId>
  195. <version>${commons-lang3.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>commons-fileupload</groupId>
  199. <artifactId>commons-fileupload</artifactId>
  200. <version>${commons-fileupload.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.commons</groupId>
  204. <artifactId>commons-collections4</artifactId>
  205. <version>${commons-collections4.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>com.xiaoleilu</groupId>
  209. <artifactId>hutool</artifactId>
  210. <version>${hutool.version}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>com.feilong.platform</groupId>
  214. <artifactId>feilong-core</artifactId>
  215. <version>${feilong-platform.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>commons-codec</groupId>
  219. <artifactId>commons-codec</artifactId>
  220. <version>${commons-codec.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.alibaba</groupId>
  224. <artifactId>fastjson</artifactId>
  225. <version>1.2.44</version>
  226. </dependency>
  227. <!-- poi office -->
  228. <!-- <dependency>-->
  229. <!-- <groupId>org.apache.poi</groupId>-->
  230. <!-- <artifactId>poi</artifactId>-->
  231. <!-- <version>${poi.version}</version>-->
  232. <!-- </dependency>-->
  233. <!-- <dependency>-->
  234. <!-- <groupId>org.apache.poi</groupId>-->
  235. <!-- <artifactId>poi-ooxml</artifactId>-->
  236. <!-- <version>${poi.version}</version>-->
  237. <!-- </dependency>-->
  238. <!-- <dependency>-->
  239. <!-- <groupId>org.apache.poi</groupId>-->
  240. <!-- <artifactId>poi-ooxml-schemas</artifactId>-->
  241. <!-- <version>${poi.version}</version>-->
  242. <!-- </dependency>-->
  243. <dependency>
  244. <groupId>org.projectlombok</groupId>
  245. <artifactId>lombok</artifactId>
  246. <version>${lombok.version}</version>
  247. </dependency>
  248. <!-- Swagger2核心包-->
  249. <dependency>
  250. <groupId>io.springfox</groupId>
  251. <artifactId>springfox-swagger2</artifactId>
  252. <version>${springfox.version}</version>
  253. </dependency>
  254. <!-- Swagger2 UI包,前端展示API文档 -->
  255. <dependency>
  256. <groupId>io.springfox</groupId>
  257. <artifactId>springfox-swagger-ui</artifactId>
  258. <version>${springfox.version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.bouncycastle</groupId>
  262. <artifactId>bcprov-jdk15on</artifactId>
  263. <version>1.63</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.apache.httpcomponents</groupId>
  267. <artifactId>httpclient</artifactId>
  268. <version>4.5.2</version>
  269. </dependency>
  270. <!-- httpclient -->
  271. <!--<dependency>-->
  272. <!--<groupId>org.apache.httpcomponents</groupId>-->
  273. <!--<artifactId>httpclient</artifactId>-->
  274. <!--<version>${httpclient.version}</version>-->
  275. <!--</dependency>-->
  276. <dependency>
  277. <groupId>com.squareup.okhttp3</groupId>
  278. <artifactId>okhttp</artifactId>
  279. <version>${okhttp.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>io.jsonwebtoken</groupId>
  283. <artifactId>jjwt</artifactId>
  284. <version>${jjwt.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.springframework</groupId>
  288. <artifactId>springloaded</artifactId>
  289. </dependency>
  290. <dependency>
  291. <groupId>com.google.code.gson</groupId>
  292. <artifactId>gson</artifactId>
  293. <version>2.7</version>
  294. </dependency>
  295. <!-- httpclient 上传文件至文件服务器 -->
  296. <dependency>
  297. <groupId>org.apache.httpcomponents</groupId>
  298. <artifactId>httpmime</artifactId>
  299. <version>4.5.2</version>
  300. </dependency>
  301. <!-- 阿里大鱼短信 -->
  302. <dependency>
  303. <groupId>com.aliyun</groupId>
  304. <artifactId>aliyun-java-sdk-core</artifactId>
  305. <version>3.2.8</version>
  306. </dependency>
  307. <dependency>
  308. <groupId>com.aliyun</groupId>
  309. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  310. <version>1.1.0</version>
  311. </dependency>
  312. <!-- json web token -->
  313. <dependency>
  314. <groupId>io.jsonwebtoken</groupId>
  315. <artifactId>jjwt</artifactId>
  316. <version>${jwt.version}</version>
  317. </dependency>
  318. <!--&lt;!&ndash; https://mvnrepository.com/artifact/com.google.gwt/gwt-user &ndash;&gt;-->
  319. <dependency>
  320. <groupId>com.google.gwt</groupId>
  321. <artifactId>gwt-user</artifactId>
  322. <version>2.8.2</version>
  323. </dependency>
  324. <!-- https://mvnrepository.com/artifact/org.jxls/jxls -->
  325. <dependency>
  326. <groupId>org.jxls</groupId>
  327. <artifactId>jxls</artifactId>
  328. <version>2.4.7</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>com.alibaba</groupId>
  332. <artifactId>easyexcel</artifactId>
  333. <version>2.1.6</version>
  334. </dependency>
  335. </dependencies>
  336. <build>
  337. <finalName>${artifactId}</finalName>
  338. <plugins>
  339. <!-- <plugin>
  340. <groupId>org.apache.maven.plugins</groupId>
  341. <artifactId>maven-resources-plugin</artifactId>
  342. &lt;!&ndash;排除对二进制文件的过滤,解决字体图标无法显示&ndash;&gt;
  343. <configuration>
  344. <nonFilteredFileExtensions>
  345. &lt;!&ndash; fonts &ndash;&gt;
  346. <nonFilteredFileExtension>eot</nonFilteredFileExtension>
  347. <nonFilteredFileExtension>svg</nonFilteredFileExtension>
  348. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  349. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  350. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  351. </nonFilteredFileExtensions>
  352. </configuration>
  353. </plugin>-->
  354. <plugin>
  355. <groupId>org.apache.maven.plugins</groupId>
  356. <artifactId>maven-compiler-plugin</artifactId>
  357. <version>3.5.1</version>
  358. <configuration>
  359. <source>${java.version}</source>
  360. <target>${java.version}</target>
  361. <encoding>UTF-8</encoding>
  362. </configuration>
  363. </plugin>
  364. <plugin>
  365. <groupId>org.apache.maven.plugins</groupId>
  366. <artifactId>maven-surefire-plugin</artifactId>
  367. <version>2.19.1</version>
  368. </plugin>
  369. <plugin>
  370. <groupId>org.springframework.boot</groupId>
  371. <artifactId>spring-boot-maven-plugin</artifactId>
  372. <configuration>
  373. <mainClass>platform.RootApplication</mainClass>
  374. <jvmArguments>-Dfile.encoding=UTF-8 -Xdebug
  375. -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
  376. </jvmArguments>
  377. <executable>true</executable>
  378. <fork>true</fork>
  379. </configuration>
  380. </plugin>
  381. </plugins>
  382. </build>
  383. </project>