From b92027f31ef24583e8b9d4c2dc44c7e9262a2023 Mon Sep 17 00:00:00 2001 From: panlinlin <648540858@qq.com> Date: 星期一, 26 四月 2021 10:48:51 +0800 Subject: [PATCH] 修复注册是数据传输模式被回复默认 --- pom.xml | 50 +++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 41 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index dda226d..f8a8b53 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,8 @@ </parent> <groupId>com.genersoft</groupId> - <artifactId>wvp</artifactId> + <artifactId>wvp-gb28181</artifactId> + <version>2.0.0</version> <name>web video platform</name> <repositories> @@ -43,6 +44,7 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format> <!-- 渚濊禆鐗堟湰 --> <pagehelper.version>5.2.0</pagehelper.version> @@ -66,6 +68,10 @@ <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.4</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-security</artifactId> </dependency> <!-- druid鏁版嵁搴撹繛鎺ユ睜 --> @@ -96,12 +102,6 @@ <version>1.2.10</version> </dependency> -<!-- <dependency>--> -<!-- <groupId>org.apache.commons</groupId>--> -<!-- <artifactId>commons-lang3</artifactId>--> -<!-- <version>3.11</version>--> -<!-- </dependency>--> - <!--Swagger3 --> <!--鍦ㄧ嚎鏂囨。 --> <dependency> @@ -109,6 +109,12 @@ <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> + <dependency> + <groupId>com.github.xiaoymin</groupId> + <artifactId>knife4j-spring-boot-starter</artifactId> + <version>3.0.2</version> + </dependency> + <!--鍙傛暟鏍¢獙 --> <dependency> @@ -162,10 +168,36 @@ <artifactId>okhttp</artifactId> <version>4.9.0</version> </dependency> - </dependencies> + + <!-- okhttp-digest --> + <dependency> + <groupId>com.burgstaller</groupId> + <artifactId>okhttp-digest</artifactId> + <version>2.1</version> + </dependency> + + <!-- https://mvnrepository.com/artifact/net.sf.kxml/kxml2 --> + <dependency> + <groupId>net.sf.kxml</groupId> + <artifactId>kxml2</artifactId> + <version>2.3.0</version> + </dependency> + + + <!-- onvif鍗忚鏍� --> + <dependency> + <groupId>be.teletask</groupId> + <artifactId>onvif-java</artifactId> + <version>1.0.2</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/onvif-java-1.0.2.jar</systemPath> + </dependency> + </dependencies> + + <build> - <finalName>wvp-2.5.8</finalName> + <finalName>${project.artifactId}-${project.version}-${maven.build.timestamp}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> -- Gitblit v1.8.0