Skip to content

Commit

Permalink
Add work-around for conflicting versions of OkHttp
Browse files Browse the repository at this point in the history
Spring Boot ships a 3.x version of Okhttp but Dapr
requires 4.x
see dapr/java-sdk#515
  • Loading branch information
mthmulders committed Jul 14, 2021
1 parent a8f515f commit d197855
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@
<artifactId>dapr-sdk</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.0</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit d197855

Please sign in to comment.