From 05760dc061cc472bfb28c96f5dcc188456620330 Mon Sep 17 00:00:00 2001
From: xc <xucheng@yyigou.com>
Date: Mon, 08 Feb 2021 11:00:20 +0800
Subject: [PATCH] Monica视频监控处理
---
pom.xml | 52 +++++++++++++++++++++++++++++++++++++++-------------
1 files changed, 39 insertions(+), 13 deletions(-)
diff --git a/pom.xml b/pom.xml
index c4455e0..6a07def 100644
--- a/pom.xml
+++ b/pom.xml
@@ -84,27 +84,53 @@
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
+ <dependency>
+ <groupId>com.google.code.gson</groupId>
+ <artifactId>gson</artifactId>
+ <version>2.6</version>
+ </dependency>
- <!-- Golden实时数据库依赖jar包-->
+ <!-- spring MVC -->
<dependency>
- <groupId>golden</groupId>
- <artifactId>golden.commons.beanutils</artifactId>
- <version>1.8.3</version>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
- <groupId>golden</groupId>
- <artifactId>golden.commons.logging</artifactId>
- <version>1.1.1</version>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
</dependency>
<dependency>
- <groupId>golden</groupId>
- <artifactId>golden.golden.java.sdk</artifactId>
- <version>3.0.34</version>
+ <groupId>org.apache.tomcat.embed</groupId>
+ <artifactId>tomcat-embed-jasper</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- swagger2 -->
+ <dependency>
+ <groupId>io.springfox</groupId>
+ <artifactId>springfox-swagger2</artifactId>
+ <version>2.9.2</version>
</dependency>
<dependency>
- <groupId>golden</groupId>
- <artifactId>golden.protobuf.java</artifactId>
- <version>2.6.1</version>
+ <groupId>io.springfox</groupId>
+ <artifactId>springfox-swagger-ui</artifactId>
+ <version>2.9.2</version>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.12</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.5.2</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
--
Gitblit v1.9.1