pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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. <groupId>taiji.hn.axv2</groupId>
  7. <artifactId>axv2-monitor</artifactId>
  8. <version>1.0</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.2.13.RELEASE</version>
  13. <relativePath />
  14. </parent>
  15. <!-- 配置参数 -->
  16. <properties>
  17. <!--全局参数 -->
  18. <file.encoding>UTF-8</file.encoding>
  19. <project.build.sourceEncoding>${file.encoding}</project.build.sourceEncoding>
  20. <project.build.resourceEncoding>${file.encoding}</project.build.resourceEncoding>
  21. <project.reporting.outputEncoding>${file.encoding}</project.reporting.outputEncoding>
  22. <java.version>1.8</java.version>
  23. </properties>
  24. <dependencies>
  25. <!-- springboot 相关 -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-logging</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-websocket</artifactId>
  42. </dependency>
  43. <!--引入kafka依赖 -->
  44. <dependency>
  45. <groupId>org.apache.kafka</groupId>
  46. <artifactId>kafka-clients</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.kafka</groupId>
  50. <artifactId>spring-kafka</artifactId>
  51. </dependency>
  52. <!-- 视频处理库 -->
  53. <!-- jave 核心依赖 -->
  54. <dependency>
  55. <groupId>ws.schild</groupId>
  56. <artifactId>jave-core</artifactId>
  57. <version>2.4.6</version>
  58. </dependency>
  59. <!-- 根据不同操作系统引入不同FFmpeg包 -->
  60. <!-- window64位 FFmpeg -->
  61. <dependency>
  62. <groupId>ws.schild</groupId>
  63. <artifactId>jave-native-win64</artifactId>
  64. <version>2.4.6</version>
  65. </dependency>
  66. <!-- linux64位 FFmpeg -->
  67. <dependency>
  68. <groupId>ws.schild</groupId>
  69. <artifactId>jave-native-linux64</artifactId>
  70. <version>2.4.6</version>
  71. </dependency>
  72. <!-- <dependency>
  73. <groupId>org.bytedeco</groupId>
  74. <artifactId>javacv</artifactId>
  75. <version>1.5.7</version>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.openjfx</groupId>
  79. <artifactId>javafx-graphics</artifactId>
  80. </exclusion>
  81. <exclusion>
  82. <groupId>org.bytedeco</groupId>
  83. <artifactId>javacpp</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>org.bytedeco</groupId>
  87. <artifactId>openblas</artifactId>
  88. </exclusion>
  89. <exclusion>
  90. <groupId>org.bytedeco</groupId>
  91. <artifactId>opencv</artifactId>
  92. </exclusion>
  93. <exclusion>
  94. <groupId>org.bytedeco</groupId>
  95. <artifactId>tesseract</artifactId>
  96. </exclusion>
  97. <exclusion>
  98. <groupId>org.bytedeco</groupId>
  99. <artifactId>flycapture</artifactId>
  100. </exclusion>
  101. <exclusion>
  102. <groupId>org.bytedeco</groupId>
  103. <artifactId>libdc1394</artifactId>
  104. </exclusion>
  105. <exclusion>
  106. <groupId>org.bytedeco</groupId>
  107. <artifactId>libfreenect</artifactId>
  108. </exclusion>
  109. <exclusion>
  110. <groupId>org.bytedeco</groupId>
  111. <artifactId>libfreenect2</artifactId>
  112. </exclusion>
  113. <exclusion>
  114. <groupId>org.bytedeco</groupId>
  115. <artifactId>librealsense</artifactId>
  116. </exclusion>
  117. <exclusion>
  118. <groupId>org.bytedeco</groupId>
  119. <artifactId>librealsense2</artifactId>
  120. </exclusion>
  121. <exclusion>
  122. <groupId>org.bytedeco</groupId>
  123. <artifactId>videoinput</artifactId>
  124. </exclusion>
  125. <exclusion>
  126. <groupId>org.bytedeco</groupId>
  127. <artifactId>artoolkitplus</artifactId>
  128. </exclusion>
  129. <exclusion>
  130. <groupId>org.bytedeco</groupId>
  131. <artifactId>flandmark</artifactId>
  132. </exclusion>
  133. <exclusion>
  134. <groupId>org.bytedeco</groupId>
  135. <artifactId>leptonica</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.bytedeco</groupId>
  141. <artifactId>javacpp</artifactId>
  142. <version>1.5.7</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.bytedeco</groupId>
  146. <artifactId>ffmpeg</artifactId>
  147. <version>4.4-1.5.6</version>
  148. <classifier>windows-x86_64</classifier>
  149. <scope>provided</scope>
  150. <exclusions>
  151. <exclusion>
  152. <groupId>org.bytedeco</groupId>
  153. <artifactId>javacpp</artifactId>
  154. </exclusion>
  155. </exclusions>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.bytedeco</groupId>
  159. <artifactId>ffmpeg</artifactId>
  160. <version>4.4-1.5.6</version>
  161. <classifier>linux-x86_64</classifier>
  162. <scope>runtime</scope>
  163. <exclusions>
  164. <exclusion>
  165. <groupId>org.bytedeco</groupId>
  166. <artifactId>javacpp</artifactId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency> -->
  170. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  171. <dependency>
  172. <groupId>mysql</groupId>
  173. <artifactId>mysql-connector-java</artifactId>
  174. <version>5.1.46</version>
  175. <scope>compile</scope>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.postgresql</groupId>
  179. <artifactId>postgresql</artifactId>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.projectlombok</groupId>
  183. <artifactId>lombok</artifactId>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.alibaba</groupId>
  187. <artifactId>fastjson</artifactId>
  188. <version>1.2.60</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>com.baomidou</groupId>
  192. <artifactId>mybatis-plus-boot-starter</artifactId>
  193. <version>2.3</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.hikvision.ga</groupId>
  197. <artifactId>artemis-http-client</artifactId>
  198. <version>1.1.3</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.dom4j</groupId>
  202. <artifactId>dom4j</artifactId>
  203. <version>2.0.0</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.springframework.boot</groupId>
  207. <artifactId>spring-boot-configuration-processor</artifactId>
  208. <optional>true</optional>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.springframework.boot</groupId>
  212. <artifactId>spring-boot-configuration-processor</artifactId>
  213. <optional>true</optional>
  214. </dependency>
  215. </dependencies>
  216. <build>
  217. <plugins>
  218. <plugin>
  219. <groupId>org.springframework.boot</groupId>
  220. <artifactId>spring-boot-maven-plugin</artifactId>
  221. </plugin>
  222. </plugins>
  223. </build>
  224. <repositories>
  225. <repository>
  226. <id>central</id>
  227. <url>https://maven.aliyun.com/repository/central/</url>
  228. </repository>
  229. </repositories>
  230. <pluginRepositories>
  231. <pluginRepository>
  232. <id>central</id>
  233. <url>https://maven.aliyun.com/repository/central/</url>
  234. </pluginRepository>
  235. </pluginRepositories>
  236. </project>