pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example</groupId>
  6. <artifactId>Gyee_Frame_HF</artifactId>
  7. <packaging>jar</packaging>
  8. <name>Gyee_Frame_HF</name>
  9. <description>Gyee_Frame_NX系统</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.7.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. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  21. <commons.io.version>2.5</commons.io.version>
  22. <tomcat.version>9.0.35</tomcat.version>
  23. </properties>
  24. <!-- https://mvnrepository.com/ 查找jar网站 -->
  25. <dependencies>
  26. <!-- SpringBoot Web容器 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <!-- SpringBoot集成mybatis框架 -->
  32. <dependency>
  33. <groupId>org.mybatis.spring.boot</groupId>
  34. <artifactId>mybatis-spring-boot-starter</artifactId>
  35. <version>1.3.2</version>
  36. </dependency>
  37. <!-- <dependency>-->
  38. <!-- <groupId>org.mybatis.caches</groupId>-->
  39. <!-- <artifactId>mybatis-ehcache</artifactId>-->
  40. <!-- <version>1.2.1</version>-->
  41. <!-- </dependency>-->
  42. <!-- SpringBoot 测试 -->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <!-- 添加swagger2 -->
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-swagger2</artifactId>
  52. <version>2.9.2</version>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>io.swagger</groupId>
  56. <artifactId>swagger-annotations</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>io.swagger</groupId>
  60. <artifactId>swagger-models</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.springfox</groupId>
  66. <artifactId>springfox-swagger-ui</artifactId>
  67. <version>2.9.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.swagger</groupId>
  71. <artifactId>swagger-annotations</artifactId>
  72. <version>1.5.21</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.swagger</groupId>
  76. <artifactId>swagger-models</artifactId>
  77. <version>1.5.21</version>
  78. </dependency>
  79. <!-- https://mvnrepository.com/artifact/io.github.swagger2markup/swagger2markup -->
  80. <dependency>
  81. <groupId>io.swagger</groupId>
  82. <artifactId>swagger-core</artifactId>
  83. <version>1.6.2</version>
  84. </dependency>
  85. <!--GSON -->
  86. <dependency>
  87. <groupId>com.google.code.gson</groupId>
  88. <artifactId>gson</artifactId>
  89. </dependency>
  90. <!-- pageHelper -->
  91. <dependency>
  92. <groupId>com.github.pagehelper</groupId>
  93. <artifactId>pagehelper-spring-boot-starter</artifactId>
  94. <version>1.2.5</version>
  95. </dependency>
  96. <!-- mysql驱动7.0-->
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.oracle</groupId>
  103. <artifactId>ojdbc6</artifactId>
  104. <version>11.2.0.3</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.microsoft.sqlserver</groupId>
  108. <artifactId>sqljdbc4</artifactId>
  109. <version>4.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.taosdata.jdbc</groupId>
  113. <artifactId>taos-jdbcdriver</artifactId>
  114. <version>2.0.30</version>
  115. </dependency>
  116. <!-- mysql驱动8.0
  117. <dependency>
  118. <groupId>mysql</groupId>
  119. <artifactId>mysql-connector-java</artifactId>
  120. <version>8.0.11</version>
  121. </dependency>
  122. -->
  123. <!--druid 数据源监控-->
  124. <!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
  125. <dependency>
  126. <groupId>com.alibaba</groupId>
  127. <artifactId>druid-spring-boot-starter</artifactId>
  128. <version>1.1.10</version>
  129. </dependency>
  130. <!-- shiro权限 -->
  131. <dependency>
  132. <groupId>org.apache.shiro</groupId>
  133. <artifactId>shiro-spring</artifactId>
  134. <version>1.4.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-starter-aop</artifactId>
  139. </dependency>
  140. <!-- shiro权限支持thymeleaf -->
  141. <dependency>
  142. <groupId>com.github.theborakompanioni</groupId>
  143. <artifactId>thymeleaf-extras-shiro</artifactId>
  144. <version>2.0.0</version>
  145. </dependency>
  146. <!-- thymeleaf模版 -->
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  150. </dependency>
  151. <!--常用工具类 -->
  152. <dependency>
  153. <groupId>org.apache.commons</groupId>
  154. <artifactId>commons-lang3</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>commons-lang</groupId>
  158. <artifactId>commons-lang</artifactId>
  159. <version>2.4</version>
  160. </dependency>
  161. <!--io常用工具类 -->
  162. <dependency>
  163. <groupId>commons-io</groupId>
  164. <artifactId>commons-io</artifactId>
  165. <version>${commons.io.version}</version>
  166. </dependency>
  167. <!--文件上传工具类 -->
  168. <dependency>
  169. <groupId>commons-fileupload</groupId>
  170. <artifactId>commons-fileupload</artifactId>
  171. <version>${commons.fileupload.version}</version>
  172. </dependency>
  173. <!-- 热部署 -->
  174. <dependency>
  175. <groupId>org.springframework.boot</groupId>
  176. <artifactId>spring-boot-devtools</artifactId>
  177. <optional>false</optional>
  178. </dependency>
  179. <!-- Hutool是一个Java工具包 http://hutool.cn/ -->
  180. <dependency>
  181. <groupId>cn.hutool</groupId>
  182. <artifactId>hutool-all</artifactId>
  183. <version>4.1.12</version>
  184. </dependency>
  185. <!-- google验证码 -->
  186. <dependency>
  187. <groupId>com.github.penggle</groupId>
  188. <artifactId>kaptcha</artifactId>
  189. <version>2.3.2</version>
  190. </dependency>
  191. <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity -->
  192. <dependency>
  193. <groupId>org.apache.velocity</groupId>
  194. <artifactId>velocity</artifactId>
  195. <version>1.7</version>
  196. </dependency>
  197. <!-- websocket -->
  198. <dependency>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-starter-websocket</artifactId>
  201. </dependency>
  202. <!-- 配置文件读取 -->
  203. <dependency>
  204. <groupId>commons-configuration</groupId>
  205. <artifactId>commons-configuration</artifactId>
  206. <version>1.10</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.springframework.boot</groupId>
  210. <artifactId>spring-boot-configuration-processor</artifactId>
  211. <optional>true</optional>
  212. </dependency>
  213. <!-- mail -->
  214. <dependency>
  215. <groupId>javax.mail</groupId>
  216. <artifactId>mail</artifactId>
  217. <version>1.4.7</version>
  218. </dependency>
  219. <!--百度UEditor依赖的jar包 -->
  220. <dependency>
  221. <groupId>org.json</groupId>
  222. <artifactId>json</artifactId>
  223. <version>20180813</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>ueditor</groupId>
  227. <artifactId>1.4.3</artifactId>
  228. <version>1.8</version>
  229. <scope>system</scope>
  230. <systemPath>${basedir}/lib/ueditor-1.1.2.jar</systemPath>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.springframework.boot</groupId>
  234. <artifactId>spring-boot-starter-integration</artifactId>
  235. <exclusions>
  236. <exclusion>
  237. <groupId>org.springframework.boot</groupId>
  238. <artifactId>spring-boot-starter-logging</artifactId>
  239. </exclusion>
  240. </exclusions>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.springframework.integration</groupId>
  244. <artifactId>spring-integration-ip</artifactId>
  245. </dependency>
  246. <!--quartz依赖-->
  247. <dependency>
  248. <groupId>org.quartz-scheduler</groupId>
  249. <artifactId>quartz</artifactId>
  250. </dependency>
  251. <!-- 七牛云 -->
  252. <dependency>
  253. <groupId>com.qiniu</groupId>
  254. <artifactId>qiniu-java-sdk</artifactId>
  255. <version>[7.2.0, 7.2.99]</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>com.alibaba</groupId>
  259. <artifactId>fastjson</artifactId>
  260. <version>1.2.17</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.projectlombok</groupId>
  264. <artifactId>lombok</artifactId>
  265. <version>1.18.12</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.tomcat</groupId>
  269. <artifactId>tomcat-juli</artifactId>
  270. <version>${tomcat.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.tomcat.embed</groupId>
  274. <artifactId>tomcat-embed-core</artifactId>
  275. <version>${tomcat.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.apache.tomcat.embed</groupId>
  279. <artifactId>tomcat-embed-el</artifactId>
  280. <version>${tomcat.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.apache.tomcat.embed</groupId>
  284. <artifactId>tomcat-embed-websocket</artifactId>
  285. <version>${tomcat.version}</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>redis.clients</groupId>
  289. <artifactId>jedis</artifactId>
  290. <version>3.2.0</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.springframework.boot</groupId>
  294. <artifactId>spring-boot-starter-data-redis</artifactId>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.apache.poi</groupId>
  298. <artifactId>poi-ooxml</artifactId>
  299. <version>4.0.1</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>org.apache.poi</groupId>
  303. <artifactId>poi</artifactId>
  304. <version>4.0.1</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>org.pegdown</groupId>
  308. <artifactId>pegdown</artifactId>
  309. <version>1.4.2</version>
  310. </dependency>
  311. <!-- webservice-->
  312. <dependency>
  313. <groupId>org.apache.ws.commons.axiom</groupId>
  314. <artifactId>axiom-api</artifactId>
  315. <version>1.2.12</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>org.apache.axis2</groupId>
  319. <artifactId>axis2</artifactId>
  320. <version>1.6.1</version>
  321. <type>pom</type>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.apache.axis2</groupId>
  325. <artifactId>axis2-kernel</artifactId>
  326. <version>1.6.1</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>org.apache.axis2</groupId>
  330. <artifactId>axis2-adb</artifactId>
  331. <version>1.6.1</version>
  332. </dependency>
  333. <!-- webservice-->
  334. <!--http请求-->
  335. <dependency>
  336. <groupId>com.netflix.feign</groupId>
  337. <artifactId>feign-core</artifactId>
  338. <version>8.18.0</version>
  339. </dependency>
  340. <dependency>
  341. <groupId>com.netflix.feign</groupId>
  342. <artifactId>feign-jackson</artifactId>
  343. <version>8.18.0</version>
  344. </dependency>
  345. <!--http请求-->
  346. </dependencies>
  347. <build>
  348. <!-- 打包不带版本号 -->
  349. <!-- <finalName>Gyee_Frame_HF</finalName> -->
  350. <plugins>
  351. <!-- JUnit 配置 -->
  352. <plugin>
  353. <groupId>org.apache.maven.plugins</groupId>
  354. <artifactId>maven-surefire-plugin</artifactId>
  355. <!--忽略测试启动类 -->
  356. <configuration>
  357. <skip>true</skip>
  358. </configuration>
  359. </plugin>
  360. <!-- generator 配置-->
  361. <plugin>
  362. <groupId>org.mybatis.generator</groupId>
  363. <artifactId>mybatis-generator-maven-plugin</artifactId>
  364. <version>1.3.7</version>
  365. <configuration>
  366. <!--允许移动生成的文件 -->
  367. <verbose>false</verbose>
  368. <!--允许覆盖生成的文件 -->
  369. <overwrite>false</overwrite>
  370. <!--配置文件的路径 -->
  371. <configurationFile>src/main/resources/mybatis-generator.xml</configurationFile>
  372. </configuration>
  373. <dependencies>
  374. <!-- <dependency>-->
  375. <!-- <groupId>mysql</groupId>-->
  376. <!-- <artifactId>mysql-connector-java</artifactId>-->
  377. <!-- <version>${mysql.version}</version>-->
  378. <!-- </dependency>-->
  379. <dependency>
  380. <groupId>com.oracle</groupId>
  381. <artifactId>ojdbc6</artifactId>
  382. <version>11.2.0.3</version>
  383. </dependency>
  384. <!-- <dependency>-->
  385. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  386. <!-- <artifactId>sqljdbc4</artifactId>-->
  387. <!-- <version>4.0</version>-->
  388. <!-- </dependency>-->
  389. </dependencies>
  390. </plugin>
  391. <!-- jar运行配置 -->
  392. <plugin>
  393. <groupId>org.springframework.boot</groupId>
  394. <artifactId>spring-boot-maven-plugin</artifactId>
  395. </plugin>
  396. </plugins>
  397. </build>
  398. <!-- 阿里云maven仓库 -->
  399. <repositories>
  400. <repository>
  401. <id>public</id>
  402. <name>aliyun nexus</name>
  403. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  404. <releases>
  405. <enabled>true</enabled>
  406. </releases>
  407. </repository>
  408. </repositories>
  409. <pluginRepositories>
  410. <pluginRepository>
  411. <id>public</id>
  412. <name>aliyun nexus</name>
  413. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  414. <releases>
  415. <enabled>true</enabled>
  416. </releases>
  417. <snapshots>
  418. <enabled>false</enabled>
  419. </snapshots>
  420. </pluginRepository>
  421. </pluginRepositories>
  422. </project>