pom.xml 13 KB

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