pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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>GeoHazardMonitor</artifactId>
  7. <groupId>com.ozs</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>jar</packaging>
  13. <version>1.0-SNAPSHOT</version>
  14. <artifactId>hazard-admin</artifactId>
  15. <description>
  16. web服务入口
  17. </description>
  18. <dependencies>
  19. <!-- webSocket web端 消息推送 -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-websocket</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.bytedeco</groupId>
  30. <artifactId>javacpp</artifactId>
  31. <version>1.5.6</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.bytedeco</groupId>
  35. <artifactId>javacv</artifactId>
  36. <version>1.5.6</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.bytedeco</groupId>
  40. <artifactId>ffmpeg</artifactId>
  41. <version>4.4-1.5.6</version>
  42. <classifier>linux-x86_64</classifier>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.bytedeco</groupId>
  46. <artifactId>ffmpeg</artifactId>
  47. <version>4.4-1.5.6</version>
  48. <classifier>linux-x86</classifier>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.bytedeco</groupId>
  52. <artifactId>ffmpeg</artifactId>
  53. <version>4.4-1.5.6</version>
  54. <classifier>linux-arm64</classifier>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.bytedeco</groupId>
  58. <artifactId>ffmpeg</artifactId>
  59. <version>4.4-1.5.6</version>
  60. <classifier>linux-armhf</classifier>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.bytedeco</groupId>
  64. <artifactId>ffmpeg</artifactId>
  65. <version>4.4-1.5.6</version>
  66. <classifier>linux-ppc64le</classifier>
  67. </dependency>
  68. <!-- 极光推送 -->
  69. <dependency>
  70. <groupId>cn.jpush.api</groupId>
  71. <artifactId>jpush-client</artifactId>
  72. <version>3.3.8</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>cn.jpush.api</groupId>
  76. <artifactId>jmessage-client</artifactId>
  77. <version>1.1.8</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>cn.jpush.api</groupId>
  81. <artifactId>jiguang-common</artifactId>
  82. <version>1.1.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>org.junit.vintage</groupId>
  91. <artifactId>junit-vintage-engine</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <!--lombok -->
  96. <dependency>
  97. <groupId>org.projectlombok</groupId>
  98. <artifactId>lombok</artifactId>
  99. <version>1.18.14</version>
  100. </dependency>
  101. <!-- spring-boot-devtools -->
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-devtools</artifactId>
  105. <optional>true</optional> <!-- 表示依赖不会传递 -->
  106. </dependency>
  107. <!-- Mysql驱动包 -->
  108. <dependency>
  109. <groupId>mysql</groupId>
  110. <artifactId>mysql-connector-java</artifactId>
  111. </dependency>
  112. <!-- 核心模块-->
  113. <dependency>
  114. <groupId>com.ozs</groupId>
  115. <artifactId>base-framework</artifactId>
  116. </dependency>
  117. <!-- 定时任务-->
  118. <dependency>
  119. <groupId>com.ozs</groupId>
  120. <artifactId>base-quartz</artifactId>
  121. </dependency>
  122. <!-- 代码生成-->
  123. <dependency>
  124. <groupId>com.ozs</groupId>
  125. <artifactId>base-generator</artifactId>
  126. </dependency>
  127. <!-- 业务代码-->
  128. <dependency>
  129. <groupId>com.ozs</groupId>
  130. <artifactId>business-service</artifactId>
  131. <exclusions>
  132. <exclusion>
  133. <artifactId>mybatis-plus-extension</artifactId>
  134. <groupId>com.baomidou</groupId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.jcraft</groupId>
  140. <artifactId>jsch</artifactId>
  141. <version>0.1.55</version> <!-- 根据当前最新版本选择合适的版本号 -->
  142. </dependency>
  143. <dependency>
  144. <groupId>cn.hutool</groupId>
  145. <artifactId>hutool-all</artifactId>
  146. <version>5.8.26</version>
  147. </dependency>
  148. </dependencies>
  149. <build>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-maven-plugin</artifactId>
  154. <version>2.1.1.RELEASE</version>
  155. <configuration>
  156. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  157. </configuration>
  158. <executions>
  159. <execution>
  160. <goals>
  161. <goal>repackage</goal>
  162. </goals>
  163. </execution>
  164. </executions>
  165. </plugin>
  166. <plugin>
  167. <groupId>org.apache.maven.plugins</groupId>
  168. <artifactId>maven-war-plugin</artifactId>
  169. <version>3.1.0</version>
  170. <configuration>
  171. <failOnMissingWebXml>false</failOnMissingWebXml>
  172. <warName>${project.artifactId}</warName>
  173. </configuration>
  174. </plugin>
  175. </plugins>
  176. <finalName>${project.artifactId}</finalName>
  177. </build>
  178. </project>