pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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>uav</artifactId>
  7. <version>1.0</version>
  8. <name>uav</name>
  9. <description>uav</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. </dependency>
  84. <dependency>
  85. <groupId>org.mariadb.jdbc</groupId>
  86. <artifactId>mariadb-java-client</artifactId>
  87. <version>2.7.4</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>cn.smallbun.screw</groupId>
  91. <artifactId>screw-core</artifactId>
  92. <version>1.0.3</version>
  93. </dependency>
  94. <!-- spring相关包 -->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-web</artifactId>
  98. </dependency>
  99. <!-- 配置测试启动器 -->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-test</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-data-redis</artifactId>
  108. </dependency>
  109. <!-- MyBatis启动器 -->
  110. <!-- <dependency>-->
  111. <!-- <groupId>org.mybatis.spring.boot</groupId>-->
  112. <!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
  113. <!-- <version>1.1.1</version>-->
  114. <!-- </dependency>-->
  115. <!-- MySQL连接驱动 -->
  116. <dependency>
  117. <groupId>mysql</groupId>
  118. <artifactId>mysql-connector-java</artifactId>
  119. </dependency>
  120. <!-- 工具类 -->
  121. <dependency>
  122. <groupId>org.apache.commons</groupId>
  123. <artifactId>commons-lang3</artifactId>
  124. <version>3.3.2</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-io</groupId>
  128. <artifactId>commons-io</artifactId>
  129. <version>2.6</version>
  130. </dependency>
  131. <!-- 定时任务Quartz -->
  132. <dependency>
  133. <groupId>org.quartz-scheduler</groupId>
  134. <artifactId>quartz</artifactId>
  135. <version>2.2.1</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework</groupId>
  139. <artifactId>spring-context-support</artifactId>
  140. </dependency>
  141. <!-- HttpClient -->
  142. <dependency>
  143. <groupId>org.apache.httpcomponents</groupId>
  144. <artifactId>httpclient</artifactId>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.poi</groupId>
  148. <artifactId>poi</artifactId>
  149. <version>5.2.3</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.poi</groupId>
  153. <artifactId>poi-ooxml</artifactId>
  154. <version>5.2.3</version>
  155. </dependency>
  156. <!-- jsoup -->
  157. <dependency>
  158. <groupId>org.jsoup</groupId>
  159. <artifactId>jsoup</artifactId>
  160. <version>1.10.3</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.projectlombok</groupId>
  164. <artifactId>lombok</artifactId>
  165. <version>1.18.30</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>commons-io</groupId>
  169. <artifactId>commons-io</artifactId>
  170. <version>2.11.0</version> <!-- 请检查最新的版本 -->
  171. </dependency>
  172. <dependency>
  173. <groupId>com.google.code.gson</groupId>
  174. <artifactId>gson</artifactId>
  175. <version>2.8.6</version> <!-- 确保检查最新版本 -->
  176. </dependency>
  177. <dependency>
  178. <groupId>com.alibaba</groupId>
  179. <artifactId>fastjson</artifactId>
  180. <version>1.2.75</version> <!-- 请检查并使用最新版本 -->
  181. </dependency>
  182. <dependency>
  183. <groupId>com.alibaba</groupId>
  184. <artifactId>easyexcel</artifactId>
  185. <version>3.2.1</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.eclipse.paho</groupId>
  189. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  190. <version>1.2.5</version>
  191. </dependency>
  192. </dependencies>
  193. <dependencyManagement>
  194. <dependencies>
  195. <dependency>
  196. <groupId>org.springframework.boot</groupId>
  197. <artifactId>spring-boot-dependencies</artifactId>
  198. <version>${spring-boot.version}</version>
  199. <type>pom</type>
  200. <scope>import</scope>
  201. </dependency>
  202. </dependencies>
  203. </dependencyManagement>
  204. <build>
  205. <plugins>
  206. <plugin>
  207. <groupId>org.apache.maven.plugins</groupId>
  208. <artifactId>maven-compiler-plugin</artifactId>
  209. <version>3.8.1</version>
  210. <configuration>
  211. <source>1.8</source>
  212. <target>1.8</target>
  213. <encoding>UTF-8</encoding>
  214. </configuration>
  215. </plugin>
  216. <plugin>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-maven-plugin</artifactId>
  219. <version>${spring-boot.version}</version>
  220. <configuration>
  221. <mainClass>com.lutao.uav.UavApplication</mainClass>
  222. <!-- 将 skip 设置为 false 以执行打包 -->
  223. <skip>false</skip>
  224. </configuration>
  225. <executions>
  226. <execution>
  227. <id>repackage</id>
  228. <goals>
  229. <goal>repackage</goal>
  230. </goals>
  231. </execution>
  232. </executions>
  233. </plugin>
  234. </plugins>
  235. </build>
  236. </project>