You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
4.5 KiB
127 lines
4.5 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.4.5</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>com.oldwei</groupId>
|
|
<artifactId>hik-dev</artifactId>
|
|
<version>0.1.0</version>
|
|
<name>hik-dev</name>
|
|
<description>海康设备开发</description>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<mybatis.plus.version>3.4.1</mybatis.plus.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- Spring系列 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.logstash.logback</groupId>
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
|
<version>6.6</version>
|
|
</dependency>
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- fastjson https://github.com/alibaba/fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.78</version>
|
|
</dependency>
|
|
<!-- aliyun-sdk-oss https://github.com/aliyun/aliyun-oss-java-sdk -->
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>3.13.1</version>
|
|
</dependency>
|
|
<!-- HIK设备所需的jar 开始 -->
|
|
<dependency>
|
|
<groupId>com.sun</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/jna.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jna</groupId>
|
|
<artifactId>examples</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/examples.jar</systemPath>
|
|
</dependency>
|
|
<!-- HIK设备所需的jar 结束 -->
|
|
|
|
<!-- hutool工具包 https://www.hutool.cn/docs/#/ -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.7.12</version>
|
|
</dependency>
|
|
|
|
<!-- mqtt -->
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>1.2.5</version>
|
|
</dependency>
|
|
<!--判断字符串编码格式-->
|
|
<dependency>
|
|
<groupId>com.googlecode.juniversalchardet</groupId>
|
|
<artifactId>juniversalchardet</artifactId>
|
|
<version>1.0.3</version>
|
|
</dependency>
|
|
<!--javacv处理音视频流-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.bytedeco</groupId>-->
|
|
<!-- <artifactId>javacv-platform</artifactId>-->
|
|
<!-- <version>1.5.5</version>-->
|
|
<!-- </dependency>-->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<includeSystemScope>true</includeSystemScope>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|
|
|