pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.12.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.shzc</groupId>
  12. <artifactId>dataserver</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>dataserver</name>
  15. <description>dataserver for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.google.guava</groupId>
  22. <artifactId>guava</artifactId>
  23. <version>19.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>commons-collections</groupId>
  27. <artifactId>commons-collections</artifactId>
  28. <version>3.2.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-lang</groupId>
  32. <artifactId>commons-lang</artifactId>
  33. <version>2.6</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-discovery</groupId>
  37. <artifactId>commons-discovery</artifactId>
  38. <version>0.5</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-io</groupId>
  42. <artifactId>commons-io</artifactId>
  43. <version>2.5</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.hibernate</groupId>
  47. <artifactId>hibernate-validator</artifactId>
  48. <version>6.0.18.Final</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.httpcomponents</groupId>
  52. <artifactId>httpclient</artifactId>
  53. <version>4.5.7</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.hutool</groupId>
  57. <artifactId>hutool-all</artifactId>
  58. <version>5.6.6</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web</artifactId>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-logging</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.logging.log4j</groupId>
  72. <artifactId>log4j-core</artifactId>
  73. <version>2.17.0</version>
  74. <exclusions>
  75. <exclusion>
  76. <groupId>org.apache.logging.log4j</groupId>
  77. <artifactId>log4j-api</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.logging.log4j</groupId>
  83. <artifactId>log4j-api</artifactId>
  84. <version>2.17.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.sap.cloud.db.jdbc</groupId>
  88. <artifactId>ngdbc</artifactId>
  89. <version>2.4.51</version>
  90. </dependency>
  91. <!-- websocket -->
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-websocket</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.projectlombok</groupId>
  98. <artifactId>lombok</artifactId>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-test</artifactId>
  104. <scope>test</scope>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>org.junit.vintage</groupId>
  108. <artifactId>junit-vintage-engine</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <!--devtools热部署-->
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-devtools</artifactId>
  116. <optional>true</optional>
  117. </dependency>
  118. <!-- ThymeLeaf 依赖 -->
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  122. <!-- <version>3.0.11</version>-->
  123. </dependency>
  124. <!-- fastjson-->
  125. <dependency>
  126. <groupId>com.alibaba</groupId>
  127. <artifactId>fastjson</artifactId>
  128. <version>1.2.66</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.mybatis.spring.boot</groupId>
  132. <artifactId>mybatis-spring-boot-starter</artifactId>
  133. <version>2.1.3</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.alibaba</groupId>
  137. <artifactId>druid-spring-boot-starter</artifactId>
  138. <version>1.1.10</version>
  139. </dependency>
  140. <!--mysql驱动包-->
  141. <dependency>
  142. <groupId>mysql</groupId>
  143. <artifactId>mysql-connector-java</artifactId>
  144. <version>8.0.22</version>
  145. </dependency>
  146. <!-- json 转xml -->
  147. <dependency>
  148. <groupId>de.odysseus.staxon</groupId>
  149. <artifactId>staxon</artifactId>
  150. <version>1.2</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>net.sf.json-lib</groupId>
  154. <artifactId>json-lib</artifactId>
  155. <version>2.4</version>
  156. <classifier>jdk15</classifier>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.thoughtworks.xstream</groupId>
  160. <artifactId>xstream</artifactId>
  161. <version>1.4.9</version>
  162. </dependency>
  163. <!--读取 excel 的所需jar包-->
  164. <dependency>
  165. <groupId>org.apache.poi</groupId>
  166. <artifactId>poi</artifactId>
  167. <version>4.0.1</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.poi</groupId>
  171. <artifactId>poi-ooxml</artifactId>
  172. <version>4.0.1</version>
  173. </dependency>
  174. <!-- <dependency>-->
  175. <!-- <groupId>com.oracle.database.jdbc</groupId>-->
  176. <!-- <artifactId>ojdbc8</artifactId>-->
  177. <!-- <version>12.2.0.1</version>-->
  178. <!-- </dependency>-->
  179. <dependency>
  180. <groupId>com.alibaba</groupId>
  181. <artifactId>easyexcel</artifactId>
  182. <version>3.1.4</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.springframework.security</groupId>
  186. <artifactId>spring-security-web</artifactId>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-configuration-processor</artifactId>
  191. <optional>true</optional>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.jasig.cas.client</groupId>
  195. <artifactId>cas-client-core</artifactId>
  196. <version>3.5.0</version>
  197. </dependency>
  198. <!--swagger-->
  199. <dependency>
  200. <groupId>io.springfox</groupId>
  201. <artifactId>springfox-swagger2</artifactId>
  202. <version>2.9.2</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>io.springfox</groupId>
  206. <artifactId>springfox-swagger-ui</artifactId>
  207. <version>2.9.2</version>
  208. </dependency>
  209. <!--swagger-->
  210. <!-- springboot 发送邮件 -->
  211. <dependency>
  212. <groupId>org.springframework.boot</groupId>
  213. <artifactId>spring-boot-starter-mail</artifactId>
  214. </dependency>
  215. <!-- quartz定时器 -->
  216. <dependency>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-starter-quartz</artifactId>
  219. </dependency>
  220. <!--sftp文件上传-->
  221. <dependency>
  222. <groupId>com.jcraft</groupId>
  223. <artifactId>jsch</artifactId>
  224. <version>0.1.54</version>
  225. </dependency>
  226. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  227. <dependency>
  228. <groupId>com.auth0</groupId>
  229. <artifactId>java-jwt</artifactId>
  230. <version>3.18.2</version>
  231. </dependency>
  232. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-aspectj -->
  233. <dependency>
  234. <groupId>org.apache.shiro</groupId>
  235. <artifactId>shiro-aspectj</artifactId>
  236. <version>1.3.2</version>
  237. </dependency>
  238. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-cas -->
  239. <dependency>
  240. <groupId>org.apache.shiro</groupId>
  241. <artifactId>shiro-cas</artifactId>
  242. <version>1.3.2</version>
  243. </dependency>
  244. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-core -->
  245. <dependency>
  246. <groupId>org.apache.shiro</groupId>
  247. <artifactId>shiro-core</artifactId>
  248. <version>1.3.2</version>
  249. </dependency>
  250. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-ehcache -->
  251. <dependency>
  252. <groupId>org.apache.shiro</groupId>
  253. <artifactId>shiro-ehcache</artifactId>
  254. <version>1.3.2</version>
  255. </dependency>
  256. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-guice -->
  257. <dependency>
  258. <groupId>org.apache.shiro</groupId>
  259. <artifactId>shiro-guice</artifactId>
  260. <version>1.3.2</version>
  261. </dependency>
  262. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-spring -->
  263. <dependency>
  264. <groupId>org.apache.shiro</groupId>
  265. <artifactId>shiro-spring</artifactId>
  266. <version>1.3.2</version>
  267. </dependency>
  268. <!-- https://mvnrepository.com/artifact/org.apache.shiro.tools/shiro-tools-hasher -->
  269. <dependency>
  270. <groupId>org.apache.shiro.tools</groupId>
  271. <artifactId>shiro-tools-hasher</artifactId>
  272. <version>1.3.2</version>
  273. </dependency>
  274. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-web -->
  275. <dependency>
  276. <groupId>org.apache.shiro</groupId>
  277. <artifactId>shiro-web</artifactId>
  278. <version>1.3.2</version>
  279. </dependency>
  280. <!-- <dependency>-->
  281. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  282. <!-- <artifactId>sqljdbc4</artifactId>-->
  283. <!-- <version>4.0</version>-->
  284. <!-- </dependency>-->
  285. <!-- <dependency>-->
  286. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  287. <!-- <artifactId>mssql-jdbc</artifactId>-->
  288. <!-- <version>9.4.0.jre8</version>-->
  289. <!-- </dependency>-->
  290. <!-- 9.xx版本mssql驱动导致启动报错,项目无法访问-->
  291. <dependency>
  292. <groupId>com.microsoft.sqlserver</groupId>
  293. <artifactId>mssql-jdbc</artifactId>
  294. <version>8.2.2.jre8</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>junit</groupId>
  298. <artifactId>junit</artifactId>
  299. <scope>test</scope>
  300. </dependency>
  301. <dependency>
  302. <groupId>org.springframework.boot</groupId>
  303. <artifactId>spring-boot-starter-data-redis</artifactId>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.springframework</groupId>
  307. <artifactId>spring-web</artifactId>
  308. <version>5.2.9.RELEASE</version>
  309. </dependency>
  310. <!-- 钉钉 -->
  311. <!-- https://mvnrepository.com/artifact/com.aliyun/dingtalk -->
  312. <dependency>
  313. <groupId>com.aliyun</groupId>
  314. <artifactId>dingtalk</artifactId>
  315. <version>2.1.14</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>com.aliyun</groupId>
  319. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  320. <version>2.0.0</version>
  321. </dependency>
  322. <!-- 钉钉 -->
  323. </dependencies>
  324. <build>
  325. <plugins>
  326. <plugin>
  327. <groupId>org.apache.maven.plugins</groupId>
  328. <artifactId>maven-surefire-plugin</artifactId>
  329. <version>2.22.2</version>
  330. <configuration>
  331. <skipTests>true</skipTests>
  332. </configuration>
  333. </plugin>
  334. <plugin>
  335. <groupId>org.springframework.boot</groupId>
  336. <artifactId>spring-boot-maven-plugin</artifactId>
  337. <configuration>
  338. <fork>true</fork>
  339. <excludes>
  340. <exclude>
  341. <groupId>org.projectlombok</groupId>
  342. <artifactId>lombok</artifactId>
  343. </exclude>
  344. </excludes>
  345. </configuration>
  346. </plugin>
  347. <plugin>
  348. <groupId>org.apache.maven.plugins</groupId>
  349. <artifactId>maven-compiler-plugin</artifactId>
  350. <configuration>
  351. <source>8</source>
  352. <target>8</target>
  353. </configuration>
  354. </plugin>
  355. <!-- <plugin>-->
  356. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  357. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  358. <!-- <configuration>-->
  359. <!-- <source>7</source>-->
  360. <!-- <target>7</target>-->
  361. <!-- </configuration>-->
  362. <!-- </plugin>-->
  363. </plugins>
  364. </build>
  365. </project>