From 6aae0fb74bb0414cf158bac825858006c92733ea Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期二, 27 九月 2022 17:54:07 +0800 Subject: [PATCH] 视频报警后将数据同步到违规事件中 --- pom.xml | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index 58b221b..6e96dda 100644 --- a/pom.xml +++ b/pom.xml @@ -2,6 +2,18 @@ <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> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>16</source> + <target>16</target> + </configuration> + </plugin> + </plugins> + </build> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> @@ -101,6 +113,13 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> + <!-- https://mvnrepository.com/artifact/com.github.tobato/fastdfs-client --> + <dependency> + <groupId>com.github.tobato</groupId> + <artifactId>fastdfs-client</artifactId> + <version>1.27.2</version> + </dependency> + <!--Hutool Java宸ュ叿鍖�--> <dependency> <groupId>cn.hutool</groupId> @@ -149,6 +168,18 @@ <artifactId>jaxb-api</artifactId> <version>${jaxb-api.version}</version> </dependency> + + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>easyexcel</artifactId> + <version>3.1.1</version> + </dependency> + + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>fastjson</artifactId> + <version>1.2.73</version> + </dependency> </dependencies> </project> -- Gitblit v1.8.0