Skip to content

Commit

Permalink
Fix the wrong maven command in readme (apache#1185)
Browse files Browse the repository at this point in the history
* fix maven command

* fix ci

* Revert "fix ci"

This reverts commit 06cad16.

* add licenserc ignore
  • Loading branch information
wcy666103 authored Oct 21, 2024
1 parent a1feb1f commit 4ed24d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ header:
- '**/*.properties'
- '**/*.yml'
- '**/*.yaml'
- 'online_bontique_demo/frontend/src/main/resources/static/styles/bootstrap.min.css'


comment: on-failure

Expand Down
6 changes: 3 additions & 3 deletions 2-advanced/dubbo-samples-triple-streaming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ mvn clean compile #Compile and generate code
Make sure you are in `dubbo-samples-triple-streaming` directory and then run the following command:

```shell
$ mvn compile exec:java -Dexec.mainClass="org.apache.dubbo.samples.tri.streaming.TriStreamServer"
$ mvn compile exec:java -D"exec.mainClass"="org.apache.dubbo.samples.tri.streaming.TriStreamServer"
```

#### Start client
Open a new terminal, enter `dubbo-samples-triple-streaming` directory and then run the following command:

```shell
$ mvn compile exec:java -Dexec.mainClass="org.apache.dubbo.samples.tri.streaming.TriStreamClient"
```
$ mvn compile exec:java -D"exec.mainClass"="org.apache.dubbo.samples.tri.streaming.TriStreamClient"
```

0 comments on commit 4ed24d4

Please sign in to comment.