Skip to content

Commit 48364b1

Browse files
artur-ciocanuArtur Ciocanu
andauthored
Try to fix one more time after conflicts (#1053)
Signed-off-by: Artur Ciocanu <ciocanu@adobe.com> Co-authored-by: Artur Ciocanu <ciocanu@adobe.com>
1 parent 7e09841 commit 48364b1

File tree

23 files changed

+35
-35
lines changed

23 files changed

+35
-35
lines changed

examples/src/main/java/io/dapr/examples/actors/DemoActorClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* mvn clean install
2727
* 2. cd to [repo-root]/examples
2828
* 3. Run the client:
29-
* dapr run --components-path ./components/actors --app-id demoactorclient -- java -jar \
29+
* dapr run --resources-path ./components/actors --app-id demoactorclient -- java -jar \
3030
* target/dapr-java-sdk-examples-exec.jar io.dapr.examples.actors.DemoActorClient
3131
*/
3232
public class DemoActorClient {

examples/src/main/java/io/dapr/examples/actors/DemoActorService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* mvn clean install
2929
* 2. cd to [repo-root]/examples
3030
* 3. Run the server:
31-
* dapr run --components-path ./components/actors --app-id demoactorservice --app-port 3000 \
31+
* dapr run --resources-path ./components/actors --app-id demoactorservice --app-port 3000 \
3232
* -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.actors.DemoActorService -p 3000
3333
*/
3434
public class DemoActorService {

examples/src/main/java/io/dapr/examples/actors/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ timeout_seconds: 90
171171

172172
Now, execute the following script in order to run DemoActorService:
173173
```sh
174-
dapr run --components-path ./components/actors --app-id demoactorservice --app-port 3000 -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.actors.DemoActorService -p 3000
174+
dapr run --resources-path ./components/actors --app-id demoactorservice --app-port 3000 -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.actors.DemoActorService -p 3000
175175
```
176176
<!-- END_STEP -->
177177
### Running the Actor client
@@ -252,7 +252,7 @@ timeout_seconds: 45
252252

253253

254254
```sh
255-
dapr run --components-path ./components/actors --app-id demoactorclient -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.actors.DemoActorClient
255+
dapr run --resources-path ./components/actors --app-id demoactorclient -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.actors.DemoActorClient
256256
```
257257

258258
<!-- END_STEP -->

examples/src/main/java/io/dapr/examples/bindings/http/InputBindingExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* mvn clean install
2626
* 2. cd to [repo-root]/examples
2727
* 3. Run :
28-
* dapr run --components-path ./components/bindings --app-id inputbinding --app-port 3000 \
28+
* dapr run --resources-path ./components/bindings --app-id inputbinding --app-port 3000 \
2929
* -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.bindings.http.InputBindingExample -p 3000
3030
*/
3131
public class InputBindingExample {

examples/src/main/java/io/dapr/examples/bindings/http/OutputBindingExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* mvn clean install
2323
* 2. cd to [repo-root]/examples
2424
* 3. Run the program:
25-
* dapr run --components-path ./components/bindings --app-id outputbinding \
25+
* dapr run --resources-path ./components/bindings --app-id outputbinding \
2626
* -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.bindings.http.OutputBindingExample
2727
*/
2828
public class OutputBindingExample {

examples/src/main/java/io/dapr/examples/bindings/http/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ sleep: 10
125125
-->
126126

127127
```bash
128-
dapr run --components-path ./components/bindings --app-id inputbinding --app-port 3000 -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.bindings.http.InputBindingExample -p 3000
128+
dapr run --resources-path ./components/bindings --app-id inputbinding --app-port 3000 -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.bindings.http.InputBindingExample -p 3000
129129
```
130130

131131
<!-- END_STEP -->
@@ -195,7 +195,7 @@ sleep: 30
195195
-->
196196

197197
```bash
198-
dapr run --components-path ./components/bindings --app-id outputbinding -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.bindings.http.OutputBindingExample
198+
dapr run --resources-path ./components/bindings --app-id outputbinding -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.bindings.http.OutputBindingExample
199199
```
200200

201201
<!-- END_STEP -->

examples/src/main/java/io/dapr/examples/configuration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ sleep: 10
158158
-->
159159

160160
```bash
161-
dapr run --components-path ./components/configuration --app-id configgrpc --log-level debug -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.configuration.ConfigurationClient
161+
dapr run --resources-path ./components/configuration --app-id configgrpc --log-level debug -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.configuration.ConfigurationClient
162162
```
163163

164164
<!-- END_STEP -->

examples/src/main/java/io/dapr/examples/lock/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ sleep: 5
5858
-->
5959

6060
```bash
61-
dapr run --components-path ./components/lock --app-id lockgrpc --log-level debug -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.lock.DistributedLockGrpcClient
61+
dapr run --resources-path ./components/lock --app-id lockgrpc --log-level debug -- java -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.lock.DistributedLockGrpcClient
6262
```
6363

6464
<!-- END_STEP -->

examples/src/main/java/io/dapr/examples/pubsub/BulkPublisher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* mvn clean install
3737
* 2. cd [repo root]/examples
3838
* 3. Run the program:
39-
* dapr run --components-path ./components/pubsub --app-id bulk-publisher -- \
39+
* dapr run --resources-path ./components/pubsub --app-id bulk-publisher -- \
4040
* java -Ddapr.grpc.port="50010" -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.pubsub.BulkPublisher
4141
*/
4242
public class BulkPublisher {

examples/src/main/java/io/dapr/examples/pubsub/CloudEventBulkPublisher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* mvn clean install
3434
* 2. cd [repo root]/examples
3535
* 3. Run the program:
36-
* dapr run --components-path ./components/pubsub --app-id publisher -- \
36+
* dapr run --resources-path ./components/pubsub --app-id publisher -- \
3737
* java -Ddapr.grpc.port="50010" \
3838
* -jar target/dapr-java-sdk-examples-exec.jar io.dapr.examples.pubsub.CloudEventBulkPublisher
3939
*/

0 commit comments

Comments
 (0)