From 74c912b06445d5ba78c33810030dd22a018051df Mon Sep 17 00:00:00 2001 From: cjl <276999030@qq.com> Date: Thu, 19 Oct 2023 15:31:22 +0800 Subject: [PATCH] fix:监测站数据问题 --- screen-job/pom.xml | 22 ++++++++++++++++------ 1 files changed, 16 insertions(+), 6 deletions(-) diff --git a/screen-job/pom.xml b/screen-job/pom.xml index 3432e2b..7ad595f 100644 --- a/screen-job/pom.xml +++ b/screen-job/pom.xml @@ -14,22 +14,32 @@ <dependencies> <dependency> - <groupId>org.moral</groupId> - <artifactId>screen-common</artifactId> - <version>1.0-SNAPSHOT</version> - <scope>compile</scope> - </dependency> - <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + <version>3.1</version> + </dependency> + <dependency> <groupId>org.moral</groupId> <artifactId>screen-common</artifactId> <version>1.0-SNAPSHOT</version> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>3.9</version> + </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.5.13</version> + </dependency> </dependencies> <build> -- Gitblit v1.8.0