🎨 fix Cannot find the class file for okhttp3.OkHttpClient

This commit is contained in:
Kiyan
2022-07-06 23:45:53 +08:00
committed by GitHub
parent 31a18b28a4
commit 2b93f91af6

View File

@@ -1,7 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>wx-java-spring-boot-starters</artifactId> <artifactId>wx-java-spring-boot-starters</artifactId>
<groupId>com.github.binarywang</groupId> <groupId>com.github.binarywang</groupId>
@@ -35,6 +33,16 @@
<version>${spring.boot.version}</version> <version>${spring.boot.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency>
<groupId>org.jodd</groupId>
<artifactId>jodd-http</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<scope>provided</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>
@@ -60,4 +68,4 @@
</plugins> </plugins>
</build> </build>
</project> </project>