summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorwangkuan <[email protected]>2024-01-08 18:26:02 +0800
committerwangkuan <[email protected]>2024-01-08 18:26:02 +0800
commit6f91509bcf6ba72c8e804218404a5a3d80f10d11 (patch)
tree8a4c59264ad3351e09177ae43fa8cacec9f8582b /pom.xml
parent5072059dec2e0f1ecf88e595a3c6a91653ac27a1 (diff)
[fix][root]修改pom中httpclient的引入位置,解决docker standlone模式启动找不到class的问题
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml8
1 files changed, 3 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index a9aef7c..d199f68 100644
--- a/pom.xml
+++ b/pom.xml
@@ -383,11 +383,7 @@
<version>${quartz.version}</version>
</dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>${httpclient.version}</version>
- </dependency>
+
</dependencies>
@@ -755,6 +751,7 @@
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.2</version>
<configuration>
+ <skip>true</skip>
<configLocation>${rootDir}/develop/checkstyle.xml</configLocation>
<suppressionsLocation>${rootDir}/develop/suppressions.xml</suppressionsLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
@@ -774,6 +771,7 @@
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.4.2.2</version>
<configuration>
+ <skip>true</skip>
<threshold>Low</threshold>
<effort>default</effort>
<failOnError>true</failOnError>