pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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. </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.20</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. </dependencies>
  312. <build>
  313. <!-- 打包不带版本号 -->
  314. <!-- <finalName>Gyee_Frame_NX</finalName> -->
  315. <plugins>
  316. <!-- JUnit 配置 -->
  317. <plugin>
  318. <groupId>org.apache.maven.plugins</groupId>
  319. <artifactId>maven-surefire-plugin</artifactId>
  320. <!--忽略测试启动类 -->
  321. <configuration>
  322. <skip>true</skip>
  323. </configuration>
  324. </plugin>
  325. <!-- generator 配置-->
  326. <plugin>
  327. <groupId>org.mybatis.generator</groupId>
  328. <artifactId>mybatis-generator-maven-plugin</artifactId>
  329. <version>1.3.7</version>
  330. <configuration>
  331. <!--允许移动生成的文件 -->
  332. <verbose>false</verbose>
  333. <!--允许覆盖生成的文件 -->
  334. <overwrite>false</overwrite>
  335. <!--配置文件的路径 -->
  336. <configurationFile>src/main/resources/mybatis-generator.xml</configurationFile>
  337. </configuration>
  338. <dependencies>
  339. <!-- <dependency>-->
  340. <!-- <groupId>mysql</groupId>-->
  341. <!-- <artifactId>mysql-connector-java</artifactId>-->
  342. <!-- <version>${mysql.version}</version>-->
  343. <!-- </dependency>-->
  344. <dependency>
  345. <groupId>com.oracle</groupId>
  346. <artifactId>ojdbc6</artifactId>
  347. <version>11.2.0.3</version>
  348. </dependency>
  349. <!-- <dependency>-->
  350. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  351. <!-- <artifactId>sqljdbc4</artifactId>-->
  352. <!-- <version>4.0</version>-->
  353. <!-- </dependency>-->
  354. </dependencies>
  355. </plugin>
  356. <!-- jar运行配置 -->
  357. <plugin>
  358. <groupId>org.springframework.boot</groupId>
  359. <artifactId>spring-boot-maven-plugin</artifactId>
  360. </plugin>
  361. </plugins>
  362. </build>
  363. <!-- 阿里云maven仓库 -->
  364. <repositories>
  365. <repository>
  366. <id>public</id>
  367. <name>aliyun nexus</name>
  368. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  369. <releases>
  370. <enabled>true</enabled>
  371. </releases>
  372. </repository>
  373. </repositories>
  374. <pluginRepositories>
  375. <pluginRepository>
  376. <id>public</id>
  377. <name>aliyun nexus</name>
  378. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  379. <releases>
  380. <enabled>true</enabled>
  381. </releases>
  382. <snapshots>
  383. <enabled>false</enabled>
  384. </snapshots>
  385. </pluginRepository>
  386. </pluginRepositories>
  387. </project>