大数据系统 单mysql服务器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

449 lines
16 KiB

  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>org.yxk</groupId>
  7. <artifactId>yxkidentify</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>yxkidentify</name>
  10. <packaging>war</packaging>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.6.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from mapper -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <java.home>D:\Java\jdk1.8.0_131</java.home>
  22. </properties>
  23. <dependencies>
  24. <!--SpringBoot web 组件-start -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-logging</artifactId>
  32. </dependency>
  33. <!--SpringBoot web 组件-end -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!-- &lt;!&ndash;thymeleaf视图渲染组件-start &ndash;&gt;-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.springframework.boot</groupId>-->
  46. <!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>-->
  47. <!-- </dependency>-->
  48. <!-- &lt;!&ndash;thymeleaf视图渲染组件-end &ndash;&gt;-->
  49. <!--mysql连接-start -->
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <version>8.0.30</version>
  54. <!-- <scope>provided</scope>-->
  55. </dependency>
  56. <!--mysql连接-end -->
  57. <!-- druid数据库连接池-start -->
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>druid</artifactId>
  61. <version>1.1.10</version>
  62. </dependency>
  63. <!-- druid数据库连接池-end -->
  64. <dependency>
  65. <groupId>com.microsoft.sqlserver</groupId>
  66. <artifactId>mssql-jdbc</artifactId>
  67. <scope>runtime</scope>
  68. </dependency>
  69. <!--mybatis-start-->
  70. <dependency>
  71. <groupId>org.mybatis.spring.boot</groupId>
  72. <artifactId>mybatis-spring-boot-starter</artifactId>
  73. <version>1.3.2</version>
  74. </dependency>
  75. <!--mybatis-end -->
  76. <!--hibernate-start-->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-jpa</artifactId>
  80. </dependency>
  81. <!--hibernate-end-->
  82. <dependency>
  83. <groupId>javax.persistence</groupId>
  84. <artifactId>persistence-api</artifactId>
  85. <version>1.0.2</version>
  86. </dependency>
  87. <!--spring security-start-->
  88. <!-- <dependency>-->
  89. <!-- <groupId>org.springframework.boot</groupId>-->
  90. <!-- <artifactId>spring-boot-starter-security</artifactId>-->
  91. <!-- </dependency>-->
  92. <!--spring security-end-->
  93. <!--httpclient-start-->
  94. <dependency>
  95. <groupId>org.apache.httpcomponents</groupId>
  96. <artifactId>httpclient</artifactId>
  97. <version>4.5.6</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.httpcomponents</groupId>
  101. <artifactId>httpmime</artifactId>
  102. <version>4.5.6</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.json</groupId>
  106. <artifactId>json</artifactId>
  107. <version>20140107</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.fasterxml.jackson.core</groupId>
  111. <artifactId>jackson-databind</artifactId>
  112. <version>2.9.7</version>
  113. </dependency>
  114. <!-- 百度编辑器 -end-->
  115. <!--百度短信-start-->
  116. <dependency>
  117. <groupId>com.baidubce</groupId>
  118. <artifactId>bce-java-sdk</artifactId>
  119. <version>0.10.28</version>
  120. </dependency>
  121. <!--其它-start-->
  122. <dependency>
  123. <groupId>commons-io</groupId>
  124. <artifactId>commons-io</artifactId>
  125. <version>2.6</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-codec</groupId>
  129. <artifactId>commons-codec</artifactId>
  130. <version>1.11</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.alibaba</groupId>
  134. <artifactId>fastjson</artifactId>
  135. <version>1.2.53</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>net.sf.json-lib</groupId>
  139. <artifactId>json-lib</artifactId>
  140. <version>2.4</version>
  141. <classifier>jdk15</classifier>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.poi</groupId>
  145. <artifactId>poi</artifactId>
  146. <version>3.13</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.poi</groupId>
  150. <artifactId>poi-ooxml</artifactId>
  151. <version>3.13</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.imgscalr</groupId>
  155. <artifactId>imgscalr-lib</artifactId>
  156. <version>4.2</version>
  157. </dependency>
  158. <!--二维码生成器-->
  159. <!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
  160. <dependency>
  161. <groupId>com.google.zxing</groupId>
  162. <artifactId>core</artifactId>
  163. <version>3.3.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.google.zxing</groupId>
  167. <artifactId>javase</artifactId>
  168. <version>3.3.0</version>
  169. </dependency>
  170. <!--logback-start -->
  171. <dependency>
  172. <groupId>ch.qos.logback</groupId>
  173. <artifactId>logback-core</artifactId>
  174. <version>1.2.3</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>ch.qos.logback</groupId>
  178. <artifactId>logback-classic</artifactId>
  179. <version>1.2.3</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.slf4j</groupId>
  183. <artifactId>slf4j-api</artifactId>
  184. <version>1.7.25</version>
  185. </dependency>
  186. <!--mybatis分页工具-->
  187. <dependency>
  188. <groupId>com.github.pagehelper</groupId>
  189. <artifactId>pagehelper-spring-boot-starter</artifactId>
  190. <version>1.2.10</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.github.pagehelper</groupId>
  194. <artifactId>pagehelper</artifactId>
  195. <version>5.1.8</version>
  196. </dependency>
  197. <!--logback-end -->
  198. <!--支付宝支付-start-->
  199. <dependency>
  200. <groupId>com.alipay.sdk</groupId>
  201. <artifactId>alipay-sdk-java</artifactId>
  202. <version>3.0.0</version>
  203. </dependency>
  204. <!--支付宝支付-end-->
  205. <!--微信支付-start-->
  206. <dependency>
  207. <groupId>com.github.wxpay</groupId>
  208. <artifactId>wxpay-sdk</artifactId>
  209. <version>0.0.3</version>
  210. </dependency>
  211. <!--微信支付-end-->
  212. <dependency>
  213. <groupId>org.bouncycastle</groupId>
  214. <artifactId>bcprov-jdk15on</artifactId>
  215. <version>1.54</version>
  216. </dependency>
  217. <!-- spring-boot-devtools热启动依赖包 start-->
  218. <dependency>
  219. <groupId>org.springframework</groupId>
  220. <artifactId>springloaded</artifactId>
  221. <version>1.2.8.RELEASE</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.springframework.boot</groupId>
  225. <artifactId>spring-boot-devtools</artifactId>
  226. <optional>true</optional>
  227. <scope>true</scope>
  228. </dependency>
  229. <!-- spring-boot-devtools热启动依赖包 end-->
  230. <dependency>
  231. <groupId>org.springframework.boot</groupId>
  232. <artifactId>spring-boot-starter-tomcat</artifactId>
  233. <scope>provided</scope>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.tomcat.embed</groupId>
  237. <artifactId>tomcat-embed-jasper</artifactId>
  238. <scope>provided</scope>
  239. </dependency>
  240. <!--其它-end-->
  241. <!-- shiro框架 start -->
  242. <dependency>
  243. <groupId>org.apache.shiro</groupId>
  244. <artifactId>shiro-core</artifactId>
  245. <version>1.6.0</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.shiro</groupId>
  249. <artifactId>shiro-web</artifactId>
  250. <version>1.6.0</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.apache.shiro</groupId>
  254. <artifactId>shiro-ehcache</artifactId>
  255. <version>1.6.0</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.shiro</groupId>
  259. <artifactId>shiro-spring</artifactId>
  260. <version>1.6.0</version>
  261. </dependency>
  262. <!-- shiro框架 end -->
  263. <dependency>
  264. <groupId>javax.servlet</groupId>
  265. <artifactId>javax.servlet-api</artifactId>
  266. <scope>provided</scope>
  267. </dependency>
  268. <dependency>
  269. <groupId>javax.servlet</groupId>
  270. <artifactId>jstl</artifactId>
  271. <version>1.2</version>
  272. </dependency>
  273. <!-- JSTL实现包 -->
  274. <dependency>
  275. <groupId>org.apache.taglibs</groupId>
  276. <artifactId>taglibs-standard-impl</artifactId>
  277. <version>1.2.5</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>com.google.code.gson</groupId>
  281. <artifactId>gson</artifactId>
  282. <version>2.8.2</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.apache.axis</groupId>
  286. <artifactId>axis</artifactId>
  287. <version>1.4</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>commons-discovery</groupId>
  291. <artifactId>commons-discovery</artifactId>
  292. <version>0.2</version>
  293. <exclusions>
  294. <exclusion>
  295. <groupId>commons-logging</groupId>
  296. <artifactId>commons-logging</artifactId>
  297. </exclusion>
  298. </exclusions>
  299. </dependency>
  300. <dependency>
  301. <groupId>org.apache.axis</groupId>
  302. <artifactId>axis-jaxrpc</artifactId>
  303. <version>1.4</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.apache.axis</groupId>
  307. <artifactId>axis-saaj</artifactId>
  308. <version>1.4</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>wsdl4j</groupId>
  312. <artifactId>wsdl4j</artifactId>
  313. <version>1.4</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>javax</groupId>
  317. <artifactId>javaee-api</artifactId>
  318. <version>7.0</version>
  319. <scope>provided</scope>
  320. </dependency>
  321. <!-- webSocket 开始-->
  322. <dependency>
  323. <groupId>org.springframework</groupId>
  324. <artifactId>spring-websocket</artifactId>
  325. <version>5.1.8.RELEASE</version>
  326. </dependency>
  327. <!-- webSocket 结束-->
  328. <dependency>
  329. <groupId>org.postgresql</groupId>
  330. <artifactId>postgresql</artifactId>
  331. <scope>runtime</scope>
  332. </dependency>
  333. <!-- 文件保存 -->
  334. <dependency>
  335. <groupId>io.minio</groupId>
  336. <artifactId>minio</artifactId>
  337. <version>6.0.11</version>
  338. </dependency>
  339. <dependency>
  340. <groupId>org.springframework.boot</groupId>
  341. <artifactId>spring-boot-configuration-processor</artifactId>
  342. <optional>true</optional>
  343. </dependency>
  344. <dependency>
  345. <groupId>com.google.guava</groupId>
  346. <artifactId>guava</artifactId>
  347. <version>20.0</version>
  348. </dependency>
  349. <!-- swagger -->
  350. <dependency>
  351. <groupId>io.springfox</groupId>
  352. <artifactId>springfox-swagger2</artifactId>
  353. <version>2.9.2</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>io.springfox</groupId>
  357. <artifactId>springfox-swagger-ui</artifactId>
  358. <version>2.9.2</version>
  359. </dependency>
  360. <!-- swagger end -->
  361. <dependency>
  362. <groupId>jdom</groupId>
  363. <artifactId>jdom</artifactId>
  364. <version>1.0</version>
  365. </dependency>
  366. <dependency>
  367. <groupId>org.apache.tika</groupId>
  368. <artifactId>tika-core</artifactId>
  369. <version>1.20</version>
  370. </dependency>
  371. <dependency>
  372. <groupId>org.projectlombok</groupId>
  373. <artifactId>lombok</artifactId>
  374. </dependency>
  375. <dependency>
  376. <groupId>org.jsoup</groupId>
  377. <artifactId>jsoup</artifactId>
  378. <version>1.13.1</version>
  379. </dependency>
  380. <dependency>
  381. <groupId>javax.xml.bind</groupId>
  382. <artifactId>jaxb-api</artifactId>
  383. <version>2.3.1</version>
  384. </dependency>
  385. </dependencies>
  386. <build>
  387. <finalName>yxkidentify</finalName>
  388. <plugins>
  389. <plugin>
  390. <groupId>org.springframework.boot</groupId>
  391. <artifactId>spring-boot-maven-plugin</artifactId>
  392. </plugin>
  393. <!--maven编译插件,增加jce.jar,默认jdk中没有此jar包-->
  394. <plugin>
  395. <groupId>org.apache.maven.plugins</groupId>
  396. <artifactId>maven-compiler-plugin</artifactId>
  397. <version>3.6.0</version>
  398. <configuration>
  399. <source>1.8</source>
  400. <target>1.8</target>
  401. <encoding>UTF-8</encoding>
  402. <compilerArguments>
  403. <verbose/>
  404. <bootclasspath>${java.home}/jre/lib/rt.jar;${java.home}/jre/lib/jce.jar</bootclasspath>
  405. </compilerArguments>
  406. </configuration>
  407. </plugin>
  408. <!--跳过测试,即打包时不执行JunitTest方法,如果需要执行,则注释掉此代码-->
  409. <plugin>
  410. <groupId>org.apache.maven.plugins</groupId>
  411. <artifactId>maven-surefire-plugin</artifactId>
  412. <configuration>
  413. <skipTests>true</skipTests>
  414. </configuration>
  415. </plugin>
  416. </plugins>
  417. <resources>
  418. <resource>
  419. <directory>src/main/java</directory>
  420. <includes>
  421. <include>**/*.properties</include>
  422. <include>**/*.xml</include>
  423. </includes>
  424. <filtering>false</filtering>
  425. </resource>
  426. <resource>
  427. <directory>src/main/resources</directory>
  428. </resource>
  429. </resources>
  430. </build>
  431. </project>