pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.3.RELEASE</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.muzhi.lingai</groupId>
  13. <artifactId>lingai</artifactId>
  14. <!-- <packaging>jar</packaging>-->
  15. <version>1.0-SNAPSHOT</version>
  16. <name>lingai</name>
  17. <description>Demo project for Spring Boot</description>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. <fastjson.version>1.2.33</fastjson.version>
  21. <gson.version>2.8.2</gson.version>
  22. <json.version>20170516</json.version>
  23. <poi.version>3.17</poi.version>
  24. <jodatime.version>2.10.1</jodatime.version>
  25. <swagger.version>2.7.0</swagger.version>
  26. <commons-fileupload.version>1.3.1</commons-fileupload.version>
  27. <!-- <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>-->
  28. <!-- 布局功能的支持程序 thymeleaf3主程序 layout2以上版本-->
  29. <!-- <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>-->
  30. </properties>
  31. <repositories>
  32. <repository>
  33. <id>sonatype-nexus-staging</id>
  34. <name>Sonatype Nexus Staging</name>
  35. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  36. <releases>
  37. <enabled>true</enabled>
  38. </releases>
  39. <snapshots>
  40. <enabled>true</enabled>
  41. </snapshots>
  42. </repository>
  43. </repositories>
  44. <dependencies>
  45. <dependency>
  46. <groupId>com.auth0</groupId>
  47. <artifactId>java-jwt</artifactId>
  48. <version>3.4.0</version>
  49. </dependency>
  50. <!-- httpClient -->
  51. <dependency>
  52. <groupId>org.apache.httpcomponents</groupId>
  53. <artifactId>httpclient</artifactId>
  54. <version>4.5.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.httpcomponents</groupId>
  58. <artifactId>httpcore</artifactId>
  59. <version>4.4.13</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-httpclient</groupId>
  63. <artifactId>commons-httpclient</artifactId>
  64. <version>3.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.squareup.okhttp3</groupId>
  68. <artifactId>okhttp</artifactId>
  69. <version>4.4.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.konghq</groupId>
  73. <artifactId>unirest-java</artifactId>
  74. <version>2.3.17</version>
  75. </dependency>
  76. <!-- <dependency>-->
  77. <!-- <groupId>org.slf4j</groupId>-->
  78. <!-- <artifactId>slf4j-api</artifactId>-->
  79. <!-- </dependency>-->
  80. <!-- <dependency>-->
  81. <!-- <groupId>commons-io</groupId>-->
  82. <!-- <artifactId>commons-io</artifactId>-->
  83. <!-- </dependency>-->
  84. <!--json 组件 -->
  85. <!-- <dependency>-->
  86. <!-- <groupId>com.alibaba</groupId>-->
  87. <!-- <artifactId>fastjson</artifactId>-->
  88. <!-- <scope>provided</scope>-->
  89. <!-- </dependency>-->
  90. <!-- <dependency>-->
  91. <!-- <groupId>org.apache.cxf</groupId>-->
  92. <!-- <artifactId>cxf-spring-boot-starter-jaxws</artifactId>-->
  93. <!-- <version>3.3.1</version>-->
  94. <!-- </dependency>-->
  95. <!-- <dependency>-->
  96. <!-- <groupId>org.springframework.boot</groupId>-->
  97. <!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>-->
  98. <!--&lt;!&ndash; <version>2.3.3.RELEASE</version>&ndash;&gt;-->
  99. <!-- </dependency>-->
  100. <!--钉钉相关-->
  101. <dependency>
  102. <groupId>com.aliyun</groupId>
  103. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  104. <version>2.0.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.aliyun</groupId>
  108. <artifactId>dingtalk</artifactId>
  109. <version>1.4.35</version>
  110. </dependency>
  111. <!--json相关-->
  112. <dependency>
  113. <groupId>com.alibaba</groupId>
  114. <artifactId>fastjson</artifactId>
  115. <version>${fastjson.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.json</groupId>
  119. <artifactId>json</artifactId>
  120. <version>${json.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.google.code.gson</groupId>
  124. <artifactId>gson</artifactId>
  125. <version>${gson.version}</version>
  126. </dependency>
  127. <!-- <dependency>-->
  128. <!-- <groupId>net.sf.json-lib</groupId>-->
  129. <!-- <artifactId>json-lib</artifactId>-->
  130. <!-- <version>2.4</version>-->
  131. <!-- </dependency>-->
  132. <!-- JSONObject对象依赖的jar包 -->
  133. <dependency>
  134. <groupId>commons-beanutils</groupId>
  135. <artifactId>commons-beanutils</artifactId>
  136. <version>1.9.3</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-collections</groupId>
  140. <artifactId>commons-collections</artifactId>
  141. <version>3.2.1</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>commons-lang</groupId>
  145. <artifactId>commons-lang</artifactId>
  146. <version>2.6</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-logging</groupId>
  150. <artifactId>commons-logging</artifactId>
  151. <version>1.1.1</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>net.sf.ezmorph</groupId>
  155. <artifactId>ezmorph</artifactId>
  156. <version>1.0.6</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>net.sf.json-lib</groupId>
  160. <artifactId>json-lib</artifactId>
  161. <version>2.2.3</version>
  162. <classifier>jdk15</classifier><!-- 指定jdk版本 -->
  163. </dependency>
  164. <!--xls-->
  165. <dependency>
  166. <groupId>org.apache.poi</groupId>
  167. <artifactId>poi</artifactId>
  168. <version>${poi.version}</version>
  169. </dependency>
  170. <!--xlsx-->
  171. <dependency>
  172. <groupId>org.apache.poi</groupId>
  173. <artifactId>poi-ooxml</artifactId>
  174. <version>${poi.version}</version>
  175. </dependency>
  176. <!--文件上传-->
  177. <dependency>
  178. <groupId>commons-fileupload</groupId>
  179. <artifactId>commons-fileupload</artifactId>
  180. <version>${commons-fileupload.version}</version>
  181. </dependency>
  182. <!-- <dependency>-->
  183. <!-- <groupId>org.springframework.boot</groupId>-->
  184. <!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>-->
  185. <!-- </dependency>-->
  186. <!--引入web模块-->
  187. <dependency>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-starter-web</artifactId>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.springframework.boot</groupId>
  193. <artifactId>spring-boot-devtools</artifactId>
  194. <version>2.3.3.RELEASE</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.projectlombok</groupId>
  198. <artifactId>lombok</artifactId>
  199. <optional>true</optional>
  200. <version>1.18.10</version>
  201. </dependency>
  202. <!--MD5加密-->
  203. <dependency>
  204. <groupId>org.apache.directory.studio</groupId>
  205. <artifactId>org.apache.commons.codec</artifactId>
  206. <version>1.8</version>
  207. </dependency>
  208. <!--Map缓存方法:可设置Map中的Entry在一段时间后自动过期-->
  209. <dependency>
  210. <groupId>net.jodah</groupId>
  211. <artifactId>expiringmap</artifactId>
  212. <version>0.5.8</version>
  213. </dependency>
  214. <!-- &lt;!&ndash;mybatis-plus数据库连接&ndash;&gt;-->
  215. <!-- <dependency>-->
  216. <!-- <groupId>com.baomidou</groupId>-->
  217. <!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
  218. <!-- <version>3.2.0</version>-->
  219. <!-- </dependency>-->
  220. <!-- &lt;!&ndash;引入mysql:数据库驱动&ndash;&gt;-->
  221. <!-- <dependency>-->
  222. <!-- <groupId>mysql</groupId>-->
  223. <!-- <artifactId>mysql-connector-java</artifactId>-->
  224. <!-- <scope>runtime</scope>-->
  225. <!-- </dependency>-->
  226. <!-- &lt;!&ndash;引入druid数据源&ndash;&gt;-->
  227. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/com.alibaba/druid &ndash;&gt;-->
  228. <!-- <dependency>-->
  229. <!-- <groupId>com.alibaba</groupId>-->
  230. <!-- <artifactId>druid</artifactId>-->
  231. <!-- <version>1.1.9</version>-->
  232. <!-- </dependency>-->
  233. <!-- <dependency>-->
  234. <!-- <groupId>com.alibaba</groupId>-->
  235. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  236. <!-- <version>1.1.9</version>-->
  237. <!-- </dependency>-->
  238. <!--引入jpa模块-->
  239. <dependency>
  240. <groupId>org.springframework.boot</groupId>
  241. <artifactId>spring-boot-starter-data-jpa</artifactId>
  242. </dependency>
  243. <!--日期时间工具-->
  244. <dependency>
  245. <groupId>joda-time</groupId>
  246. <artifactId>joda-time</artifactId>
  247. <version>${jodatime.version}</version>
  248. </dependency>
  249. <!--日期工具-->
  250. <dependency>
  251. <groupId>cn.hutool</groupId>
  252. <artifactId>hutool-all</artifactId>
  253. <version>4.6.8</version>
  254. </dependency>
  255. <!--log4j-->
  256. <dependency>
  257. <groupId>log4j</groupId>
  258. <artifactId>log4j</artifactId>
  259. <version>1.2.17</version>
  260. </dependency>
  261. <!--swagger-->
  262. <dependency>
  263. <groupId>io.springfox</groupId>
  264. <artifactId>springfox-swagger2</artifactId>
  265. <version>${swagger.version}</version>
  266. </dependency>
  267. <!--swagger ui-->
  268. <dependency>
  269. <groupId>io.springfox</groupId>
  270. <artifactId>springfox-swagger-ui</artifactId>
  271. <version>${swagger.version}</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.springframework.boot</groupId>
  275. <artifactId>spring-boot-starter-test</artifactId>
  276. <scope>test</scope>
  277. <exclusions>
  278. <exclusion>
  279. <groupId>org.junit.vintage</groupId>
  280. <artifactId>junit-vintage-engine</artifactId>
  281. </exclusion>
  282. </exclusions>
  283. </dependency>
  284. </dependencies>
  285. <build>
  286. <plugins>
  287. <plugin>
  288. <groupId>org.springframework.boot</groupId>
  289. <artifactId>spring-boot-maven-plugin</artifactId>
  290. <configuration>
  291. <fork>true</fork>
  292. </configuration>
  293. </plugin>
  294. <plugin>
  295. <groupId>org.apache.maven.plugins</groupId>
  296. <artifactId>maven-compiler-plugin</artifactId>
  297. <version>2.3.1</version>
  298. <configuration>
  299. <source>1.8</source>
  300. <target>1.8</target>
  301. <encoding>utf8</encoding>
  302. </configuration>
  303. </plugin>
  304. <!--打包跳过测试-->
  305. <!-- <plugin>-->
  306. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  307. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  308. <!-- <version>2.4.2</version>-->
  309. <!-- <configuration>-->
  310. <!-- <skipTests>true</skipTests>-->
  311. <!-- </configuration>-->
  312. <!-- </plugin>-->
  313. </plugins>
  314. <!--映射mapper中对应的xml配置文件,如果没有mapper.xml文件则将下列注释-->
  315. <!-- <resources>-->
  316. <!-- <resource>-->
  317. <!-- <directory>src/main/java</directory>-->
  318. <!-- <includes>-->
  319. <!-- <include>**/*.xml</include>-->
  320. <!-- <include>**/*.properties</include>-->
  321. <!-- <include>**/*.tld</include>-->
  322. <!-- <include>**/*.xls</include>-->
  323. <!-- <include>**/*.xlsx</include>-->
  324. <!-- </includes>-->
  325. <!-- <filtering>false</filtering>-->
  326. <!-- </resource>-->
  327. <!-- </resources>-->
  328. </build>
  329. </project>