diff options
| author | wangkuan <[email protected]> | 2024-01-08 18:26:02 +0800 |
|---|---|---|
| committer | wangkuan <[email protected]> | 2024-01-08 18:26:02 +0800 |
| commit | 6f91509bcf6ba72c8e804218404a5a3d80f10d11 (patch) | |
| tree | 8a4c59264ad3351e09177ae43fa8cacec9f8582b /pom.xml | |
| parent | 5072059dec2e0f1ecf88e595a3c6a91653ac27a1 (diff) | |
[fix][root]修改pom中httpclient的引入位置,解决docker standlone模式启动找不到class的问题
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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> |
