pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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. <parent>
  6. <artifactId>zd-modules</artifactId>
  7. <groupId>com.zd</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.zd.alg</groupId>
  12. <artifactId>zd-algorithm</artifactId>
  13. <description>算法服务</description>
  14. <dependencies>
  15. <!-- SpringBoot Web -->
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <!-- SpringCloud Alibaba Nacos -->
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  24. </dependency>
  25. <!-- SpringCloud Alibaba Nacos Config -->
  26. <dependency>
  27. <groupId>com.alibaba.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  29. </dependency>
  30. <!-- Mysql Connector -->
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. </dependency>
  35. <!--mqtt客户端链接服务-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-integration</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.integration</groupId>
  42. <artifactId>spring-integration-stream</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.integration</groupId>
  46. <artifactId>spring-integration-mqtt</artifactId>
  47. </dependency>
  48. <!-- zd okhttp -->
  49. <dependency>
  50. <groupId>com.squareup.okhttp3</groupId>
  51. <artifactId>okhttp</artifactId>
  52. <version>4.9.0</version>
  53. </dependency>
  54. <!-- okhttp-digest -->
  55. <dependency>
  56. <groupId>com.burgstaller</groupId>
  57. <artifactId>okhttp-digest</artifactId>
  58. <version>2.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>net.sf.kxml</groupId>
  62. <artifactId>kxml2</artifactId>
  63. <version>2.3.0</version>
  64. </dependency>
  65. <!-- mybatis plus -->
  66. <dependency>
  67. <groupId>com.baomidou</groupId>
  68. <artifactId>mybatis-plus-boot-starter</artifactId>
  69. </dependency>
  70. <!-- 人脸对接 -->
  71. <dependency>
  72. <groupId>arcsoft</groupId>
  73. <artifactId>arcsoft-sdk-face</artifactId>
  74. <version>3.0.0.0</version>
  75. <scope>system</scope>
  76. <systemPath>${pom.basedir}/src/main/resources/libs/arcsoft-sdk-face-3.0.0.0.jar</systemPath>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/org.bytedeco/ffmpeg-platform -->
  79. <dependency>
  80. <groupId>org.bytedeco</groupId>
  81. <artifactId>ffmpeg-platform</artifactId>
  82. <version>5.0-1.5.7</version>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/org.bytedeco/javacv -->
  85. <dependency>
  86. <groupId>org.bytedeco</groupId>
  87. <artifactId>javacv</artifactId>
  88. <version>1.5.7</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework</groupId>
  92. <artifactId>spring-mock</artifactId>
  93. <version>2.0.8</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>connect</groupId>
  97. <artifactId>connect-lib</artifactId>
  98. <version>1.0.0</version>
  99. <scope>system</scope>
  100. <systemPath>${pom.basedir}/src/main/resources/libs/connect-lib.jar</systemPath>
  101. </dependency>
  102. <dependency>
  103. <groupId>reader</groupId>
  104. <artifactId>reader-lib</artifactId>
  105. <version>1.0.0</version>
  106. <scope>system</scope>
  107. <systemPath>${pom.basedir}/src/main/resources/libs/reader-lib.jar</systemPath>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.gg.reader</groupId>
  111. <artifactId>greader-api</artifactId>
  112. <version>1.0.0</version>
  113. <scope>system</scope>
  114. <systemPath>${pom.basedir}/src/main/resources/libs/reader.jar</systemPath>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.zd</groupId>
  118. <artifactId>zd-bottle-api</artifactId>
  119. <version>${project.version}</version>
  120. </dependency>
  121. <!--反向代理-->
  122. <dependency>
  123. <groupId>org.mitre.dsmiley.httpproxy</groupId>
  124. <artifactId>smiley-http-proxy-servlet</artifactId>
  125. <version>1.12</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>javax.sip</groupId>
  129. <artifactId>jain-sip-ri</artifactId>
  130. <version>1.3.0-91</version>
  131. <scope>compile</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.dom4j</groupId>
  135. <artifactId>dom4j</artifactId>
  136. <version>2.1.3</version>
  137. <scope>compile</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>be.teletask</groupId>
  141. <artifactId>onvif-java</artifactId>
  142. <version>1.0.2</version>
  143. <scope>system</scope>
  144. <systemPath>${pom.basedir}/src/main/resources/libs/onvif-java-1.0.2.jar</systemPath>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.zd.swagger</groupId>
  148. <artifactId>common-swagger</artifactId>
  149. <version>3.1.0</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.zd.base</groupId>
  153. <artifactId>zd-base-api</artifactId>
  154. <version>3.1.0</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.zd.chemical</groupId>
  158. <artifactId>zd-chemical-api</artifactId>
  159. <version>3.1.0</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.zd.airbottle</groupId>
  163. <artifactId>zd-airbottle-api</artifactId>
  164. <version>3.1.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.zd.laboratory</groupId>
  168. <artifactId>zd-laboratory-api</artifactId>
  169. <version>3.1.0</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.zd.algorithm</groupId>
  173. <artifactId>zd-algorithm-api</artifactId>
  174. <version>3.1.0</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.zd.core</groupId>
  178. <artifactId>common-core</artifactId>
  179. <version>3.1.0</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.zd.mqtt</groupId>
  183. <artifactId>common-mqtt</artifactId>
  184. <version>3.1.0</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.zd.system</groupId>
  188. <artifactId>zd-system-api</artifactId>
  189. <version>3.1.0</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.zd.auth</groupId>
  193. <artifactId>zd-auth-api</artifactId>
  194. <version>3.1.0</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>be.teletask</groupId>
  198. <artifactId>onvif-java</artifactId>
  199. <version>1.0.2</version>
  200. <scope>system</scope>
  201. <systemPath>${project.basedir}/libs/onvif-java-1.0.2.jar</systemPath>
  202. </dependency>
  203. </dependencies>
  204. <build>
  205. <finalName>${project.artifactId}</finalName>
  206. <plugins>
  207. <plugin>
  208. <groupId>org.springframework.boot</groupId>
  209. <artifactId>spring-boot-maven-plugin</artifactId>
  210. <version>${spring-boot.version}</version>
  211. <configuration>
  212. <includeSystemScope>true</includeSystemScope>
  213. </configuration>
  214. <executions>
  215. <execution>
  216. <goals>
  217. <goal>repackage</goal>
  218. </goals>
  219. </execution>
  220. </executions>
  221. </plugin>
  222. </plugins>
  223. </build>
  224. </project>