pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. <groupId>com.lutao</groupId>
  6. <artifactId>carLocation</artifactId>
  7. <version>1.0.0</version>
  8. <name>carLocation</name>
  9. <description>carLocation</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.5.6</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <!-- <dependency>-->
  18. <!-- <groupId>org.springframework.boot</groupId>-->
  19. <!-- <artifactId>spring-boot-starter-amqp</artifactId>-->
  20. <!-- </dependency>-->
  21. <dependency>
  22. <groupId>com.baomidou</groupId>
  23. <artifactId>mybatis-plus-boot-starter</artifactId>
  24. <version>3.5.1</version>
  25. </dependency>
  26. <!--swagger-->
  27. <dependency>
  28. <groupId>io.springfox</groupId>
  29. <artifactId>springfox-boot-starter</artifactId>
  30. <version>3.0.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.jasig.cas.client</groupId>
  34. <artifactId>cas-client-support-springboot</artifactId>
  35. <version>3.6.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.hutool</groupId>
  39. <artifactId>hutool-all</artifactId>
  40. <version>5.3.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.aliyun.oss</groupId>
  44. <artifactId>aliyun-sdk-oss</artifactId>
  45. <version>3.8.0</version>
  46. </dependency>
  47. <!--maven依赖-->
  48. <!--导出pdf所需包-->
  49. <dependency>
  50. <groupId>com.itextpdf</groupId>
  51. <artifactId>itextpdf</artifactId>
  52. <version>5.5.10</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.aliyun.lindorm</groupId>
  56. <artifactId>lindorm-tsdb-client</artifactId>
  57. <version>1.0.5</version>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>com.google.code.gson</groupId>
  61. <artifactId>gson</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.itextpdf</groupId>
  67. <artifactId>itext-asian</artifactId>
  68. <version>5.2.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>net.java.dev.jna</groupId>
  72. <artifactId>jna</artifactId>
  73. <version>5.10.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.itextpdf</groupId>
  77. <artifactId>itext-asian</artifactId>
  78. <version>5.2.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.kafka</groupId>
  82. <artifactId>spring-kafka</artifactId>
  83. <version>2.3.4.RELEASE</version>
  84. </dependency>
  85. <!-- <dependency>-->
  86. <!-- <groupId>org.mariadb.jdbc</groupId>-->
  87. <!-- <artifactId>mariadb-java-client</artifactId>-->
  88. <!-- <version>2.7.4</version>-->
  89. <!-- </dependency>-->
  90. <dependency>
  91. <groupId>cn.smallbun.screw</groupId>
  92. <artifactId>screw-core</artifactId>
  93. <version>1.0.3</version>
  94. </dependency>
  95. <!-- spring相关包 -->
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-web</artifactId>
  99. </dependency>
  100. <!-- 配置测试启动器 -->
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-test</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <!-- <dependency>-->
  107. <!-- <groupId>org.springframework.boot</groupId>-->
  108. <!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
  109. <!-- </dependency>-->
  110. <!-- MyBatis启动器 -->
  111. <!-- <dependency>-->
  112. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  113. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  114. <!-- <version>1.1.1</version>-->
  115. <!-- </dependency>-->
  116. <!-- MySQL连接驱动 -->
  117. <dependency>
  118. <groupId>mysql</groupId>
  119. <artifactId>mysql-connector-java</artifactId>
  120. </dependency>
  121. <!-- 工具类 -->
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-lang3</artifactId>
  125. <version>3.3.2</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-io</groupId>
  129. <artifactId>commons-io</artifactId>
  130. <version>2.6</version>
  131. </dependency>
  132. <!-- 定时任务Quartz -->
  133. <dependency>
  134. <groupId>org.quartz-scheduler</groupId>
  135. <artifactId>quartz</artifactId>
  136. <version>2.2.1</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.springframework</groupId>
  140. <artifactId>spring-context-support</artifactId>
  141. </dependency>
  142. <!-- HttpClient -->
  143. <dependency>
  144. <groupId>org.apache.httpcomponents</groupId>
  145. <artifactId>httpclient</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.poi</groupId>
  149. <artifactId>poi</artifactId>
  150. <version>5.2.3</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi-ooxml</artifactId>
  155. <version>5.2.3</version>
  156. </dependency>
  157. <!-- jsoup -->
  158. <dependency>
  159. <groupId>org.jsoup</groupId>
  160. <artifactId>jsoup</artifactId>
  161. <version>1.10.3</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.projectlombok</groupId>
  165. <artifactId>lombok</artifactId>
  166. <version>1.18.30</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>commons-io</groupId>
  170. <artifactId>commons-io</artifactId>
  171. <version>2.11.0</version> <!-- 请检查最新的版本 -->
  172. </dependency>
  173. <dependency>
  174. <groupId>com.google.code.gson</groupId>
  175. <artifactId>gson</artifactId>
  176. <version>2.8.6</version> <!-- 确保检查最新版本 -->
  177. </dependency>
  178. <dependency>
  179. <groupId>com.alibaba</groupId>
  180. <artifactId>fastjson</artifactId>
  181. <version>1.2.75</version> <!-- 请检查并使用最新版本 -->
  182. </dependency>
  183. <dependency>
  184. <groupId>com.alibaba</groupId>
  185. <artifactId>easyexcel</artifactId>
  186. <version>3.2.1</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.eclipse.paho</groupId>
  190. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  191. <version>1.2.5</version>
  192. </dependency>
  193. </dependencies>
  194. <dependencyManagement>
  195. <dependencies>
  196. <dependency>
  197. <groupId>org.springframework.boot</groupId>
  198. <artifactId>spring-boot-dependencies</artifactId>
  199. <version>${spring-boot.version}</version>
  200. <type>pom</type>
  201. <scope>import</scope>
  202. </dependency>
  203. </dependencies>
  204. </dependencyManagement>
  205. <build>
  206. <plugins>
  207. <plugin>
  208. <groupId>org.apache.maven.plugins</groupId>
  209. <artifactId>maven-compiler-plugin</artifactId>
  210. <version>3.8.1</version>
  211. <configuration>
  212. <source>1.8</source>
  213. <target>1.8</target>
  214. <encoding>UTF-8</encoding>
  215. </configuration>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.springframework.boot</groupId>
  219. <artifactId>spring-boot-maven-plugin</artifactId>
  220. <version>${spring-boot.version}</version>
  221. <configuration>
  222. <mainClass>com.lutao.carlocation.CarLocationApplication</mainClass>
  223. <!-- 将 skip 设置为 false 以执行打包 -->
  224. <skip>false</skip>
  225. </configuration>
  226. <executions>
  227. <execution>
  228. <id>repackage</id>
  229. <goals>
  230. <goal>repackage</goal>
  231. </goals>
  232. </execution>
  233. </executions>
  234. </plugin>
  235. </plugins>
  236. </build>
  237. </project>