You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/java-sdk-docs/_index.md
+18-6
Original file line number
Diff line number
Diff line change
@@ -46,19 +46,19 @@ For a Maven project, add the following to your `pom.xml` file:
46
46
<dependency>
47
47
<groupId>io.dapr</groupId>
48
48
<artifactId>dapr-sdk</artifactId>
49
-
<version>1.14.0</version>
49
+
<version>1.14.1</version>
50
50
</dependency>
51
51
<!-- Dapr's SDK for Actors (optional). -->
52
52
<dependency>
53
53
<groupId>io.dapr</groupId>
54
54
<artifactId>dapr-sdk-actors</artifactId>
55
-
<version>1.14.0</version>
55
+
<version>1.14.1</version>
56
56
</dependency>
57
57
<!-- Dapr's SDK integration with SpringBoot (optional). -->
58
58
<dependency>
59
59
<groupId>io.dapr</groupId>
60
60
<artifactId>dapr-sdk-springboot</artifactId>
61
-
<version>1.14.0</version>
61
+
<version>1.14.1</version>
62
62
</dependency>
63
63
...
64
64
</dependencies>
@@ -76,18 +76,30 @@ For a Gradle project, add the following to your `build.gradle` file:
76
76
dependencies {
77
77
...
78
78
// Dapr's core SDK with all features, except Actors.
79
-
compile('io.dapr:dapr-sdk:1.14.0')
79
+
compile('io.dapr:dapr-sdk:1.14.1')
80
80
// Dapr's SDK for Actors (optional).
81
-
compile('io.dapr:dapr-sdk-actors:1.14.0')
81
+
compile('io.dapr:dapr-sdk-actors:1.14.1')
82
82
// Dapr's SDK integration with SpringBoot (optional).
83
-
compile('io.dapr:dapr-sdk-springboot:1.14.0')
83
+
compile('io.dapr:dapr-sdk-springboot:1.14.1')
84
84
}
85
85
```
86
86
87
87
{{% /codetab %}}
88
88
89
89
{{< /tabs >}}
90
90
91
+
If you are also using Spring Boot, you may run into a common issue where the `OkHttp` version that the Dapr SDK uses conflicts with the one specified in the Spring Boot _Bill of Materials_.
92
+
93
+
You can fix this by specifying a compatible `OkHttp` version in your project to match the version that the Dapr SDK uses:
94
+
95
+
```xml
96
+
<dependency>
97
+
<groupId>com.squareup.okhttp3</groupId>
98
+
<artifactId>okhttp</artifactId>
99
+
<version>1.14.1</version>
100
+
</dependency>
101
+
```
102
+
91
103
## Try it out
92
104
93
105
Put the Dapr Java SDK to the test. Walk through the Java quickstarts and tutorials to see Dapr in action:
0 commit comments