pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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.persagy</groupId>
  6. <artifactId>persagy-camera-dahua-windows</artifactId>
  7. <version>0.0.1</version>
  8. <description>摄像头监控</description>
  9. <repositories>
  10. <repository>
  11. <id>nexus-aliyun</id>
  12. <name>Nexus aliyun</name>
  13. <layout>default</layout>
  14. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  15. <snapshots>
  16. <enabled>false</enabled>
  17. </snapshots>
  18. <releases>
  19. <enabled>true</enabled>
  20. </releases>
  21. </repository>
  22. <repository>
  23. <id>SagaCloud</id>
  24. <name>SagaCloud</name>
  25. <url>http://47.93.132.139:8081/nexus/content/groups/public/</url>
  26. <snapshots>
  27. <enabled>true</enabled>
  28. </snapshots>
  29. <releases>
  30. <enabled>true</enabled>
  31. </releases>
  32. </repository>
  33. </repositories>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. </plugin>
  40. </plugins>
  41. <resources>
  42. <resource>
  43. <directory>src/main/resources</directory>
  44. <includes>
  45. <include>**/*</include>
  46. <include>*.yml</include>
  47. </includes>
  48. </resource>
  49. <resource>
  50. <directory>src/main/resources/jar</directory>
  51. <targetPath>BOOT-INF/lib/</targetPath>
  52. <includes>
  53. <include>**/*.jar</include>
  54. </includes>
  55. </resource>
  56. <resource>
  57. <directory>src/main/resources</directory>
  58. <targetPath>BOOT-INF/classes/</targetPath>
  59. </resource>
  60. </resources>
  61. </build>
  62. <parent>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-parent</artifactId>
  65. <version>2.2.6.RELEASE</version>
  66. </parent>
  67. <properties>
  68. <java.version>1.8</java.version>
  69. </properties>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-web</artifactId>
  74. </dependency>
  75. <!-- 引入模板引擎 -->
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  79. </dependency>
  80. <!-- 启用不严格检查html -->
  81. <dependency>
  82. <groupId>net.sourceforge.nekohtml</groupId>
  83. <artifactId>nekohtml</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-configuration-processor</artifactId>
  88. <optional>true</optional>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.sun.jna</groupId>
  92. <artifactId>jna</artifactId>
  93. <version>5.4.0</version>
  94. <scope>system</scope>
  95. <systemPath>${project.basedir}/src/main/resources/jar/jna_5.4.0.jar</systemPath>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.java-websocket</groupId>
  99. <artifactId>Java-WebSocket</artifactId>
  100. <version>1.4.0</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>commons-beanutils</groupId>
  104. <artifactId>commons-beanutils</artifactId>
  105. <version>1.8.3</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-collections</groupId>
  109. <artifactId>commons-collections</artifactId>
  110. <version>3.2.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-lang</groupId>
  114. <artifactId>commons-lang</artifactId>
  115. <version>2.5</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-logging</groupId>
  119. <artifactId>commons-logging</artifactId>
  120. <version>1.1.1</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.kordamp.ezmorph</groupId>
  124. <artifactId>ezmorph</artifactId>
  125. <version>2.0.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>net.sf.json-lib</groupId>
  129. <artifactId>json-lib</artifactId>
  130. <version>2.4</version>
  131. <classifier>jdk15</classifier>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.httpcomponents</groupId>
  135. <artifactId>httpclient</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.httpcomponents</groupId>
  139. <artifactId>httpcore</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.alibaba</groupId>
  143. <artifactId>fastjson</artifactId>
  144. <version>1.1.33</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.bouncycastle</groupId>
  148. <artifactId>bcpkix-jdk15on</artifactId>
  149. <version>1.55</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>cn.hutool</groupId>
  153. <artifactId>hutool-core</artifactId>
  154. <version>5.6.3</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.projectlombok</groupId>
  158. <artifactId>lombok</artifactId>
  159. </dependency>
  160. <dependency>
  161. <groupId>io.netty</groupId>
  162. <artifactId>netty-all</artifactId>
  163. <version>4.1.79.Final</version>
  164. </dependency>
  165. </dependencies>
  166. </project>