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: README.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,19 +52,19 @@ For a Maven project, add the following to your `pom.xml` file:
52
52
<dependency>
53
53
<groupId>io.dapr</groupId>
54
54
<artifactId>dapr-sdk</artifactId>
55
-
<version>1.7.0</version>
55
+
<version>1.7.1</version>
56
56
</dependency>
57
57
<!-- Dapr's SDK for Actors (optional). -->
58
58
<dependency>
59
59
<groupId>io.dapr</groupId>
60
60
<artifactId>dapr-sdk-actors</artifactId>
61
-
<version>1.7.0</version>
61
+
<version>1.7.1</version>
62
62
</dependency>
63
63
<!-- Dapr's SDK integration with SpringBoot (optional). -->
64
64
<dependency>
65
65
<groupId>io.dapr</groupId>
66
66
<artifactId>dapr-sdk-springboot</artifactId>
67
-
<version>1.7.0</version>
67
+
<version>1.7.1</version>
68
68
</dependency>
69
69
...
70
70
</dependencies>
@@ -78,11 +78,11 @@ For a Gradle project, add the following to your `build.gradle` file:
78
78
dependencies {
79
79
...
80
80
// Dapr's core SDK with all features, except Actors.
81
-
compile('io.dapr:dapr-sdk:1.7.0')
81
+
compile('io.dapr:dapr-sdk:1.7.1')
82
82
// Dapr's SDK for Actors (optional).
83
-
compile('io.dapr:dapr-sdk-actors:1.7.0')
83
+
compile('io.dapr:dapr-sdk-actors:1.7.1')
84
84
// Dapr's SDK integration with SpringBoot (optional).
85
-
compile('io.dapr:dapr-sdk-springboot:1.7.0')
85
+
compile('io.dapr:dapr-sdk-springboot:1.7.1')
86
86
}
87
87
```
88
88
@@ -191,17 +191,20 @@ Most exceptions thrown from the SDK are instances of `DaprException`. `DaprExcep
191
191
192
192
## Development
193
193
194
-
### Update proto files
194
+
### Update URL to fetch proto files
195
195
196
-
Change the properties below in [pom.xml](./pom.xml) to point to the desired reference URL in Git. Avoid pointing to `master` branch since it can change over time and create unpredictable behavior in the build.
196
+
Change the `dapr.proto.baseurl` property below in [pom.xml](./pom.xml) to point to the URL for the desired commit hash in Git if you need to target a proto file that is not been merged into master yet.
197
+
Note: You may need to run `mvn clean` after changing this setting to remove any auto-generated files so that the new proto files get downloaded and compiled.
0 commit comments