This is an automated email from the ASF dual-hosted git repository. adriancole pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-zipkin.git
commit 73c0a488e7e1b65f08ffd683a8784fd5d419ea0a Author: Adrian Cole <[email protected]> AuthorDate: Sat May 11 13:22:00 2019 +0800 Removes docs for wrapper as it isn't in the source release --- .github/CONTRIBUTING.md | 2 +- README.md | 2 +- benchmarks/README.md | 2 +- zipkin-server/README.md | 2 +- zipkin-storage/cassandra/README.md | 2 +- zipkin-storage/mysql-v1/README.md | 4 ++-- zipkin-ui/README.md | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 0516f07..1ca26f2 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -14,7 +14,7 @@ the terms of the [APLv2](LICENSE). All files are released with the Apache 2.0 license. If you are adding a new file it should have a header like below. This -can be automatically added by running `./mvnw com.mycila:license-maven-plugin:format`. +can be automatically added by running `mvn com.mycila:license-maven-plugin:format`. ``` /* diff --git a/README.md b/README.md index 4c0e6ca..991f714 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ To run the server from the currently checked out source, enter the following. JDK 8 is required. ```bash # Build the server and also make its dependencies -$ ./mvnw -DskipTests --also-make -pl zipkin-server clean install +$ mvn -DskipTests --also-make -pl zipkin-server clean install # Run the server $ java -jar ./zipkin-server/target/zipkin-server-*exec.jar ``` diff --git a/benchmarks/README.md b/benchmarks/README.md index 7208f86..fa78713 100644 --- a/benchmarks/README.md +++ b/benchmarks/README.md @@ -4,7 +4,7 @@ Zipkin Benchmarks This module includes [JMH](http://openjdk.java.net/projects/code-tools/jmh/) benchmarks for Zipkin. === Running the benchmark -From the parent directory, run `./mvnw install` to build the benchmarks, and the following to run them: +From the parent directory, run `mvn install` to build the benchmarks, and the following to run them: ```bash # Run with a single worker thread diff --git a/zipkin-server/README.md b/zipkin-server/README.md index 7ff0f56..444a656 100644 --- a/zipkin-server/README.md +++ b/zipkin-server/README.md @@ -454,7 +454,7 @@ See [docker-zipkin](https://github.com/openzipkin/docker-zipkin) for details. To build and run the server from the currently checked out source, enter the following. ```bash # Build the server and also make its dependencies -$ ./mvnw -DskipTests --also-make -pl zipkin-server clean install +$ mvn -DskipTests --also-make -pl zipkin-server clean install # Run the server $ java -jar ./zipkin-server/target/zipkin-server-*exec.jar ``` diff --git a/zipkin-storage/cassandra/README.md b/zipkin-storage/cassandra/README.md index a1385d2..5955f54 100644 --- a/zipkin-storage/cassandra/README.md +++ b/zipkin-storage/cassandra/README.md @@ -46,7 +46,7 @@ That said, all integration tests run on pull request via Travis. To run a single integration test, use the following syntax: ```bash -$ ./mvnw -Dit.test='ITCassandraStorage$SpanStoreTest#getTraces_duration' -pl zipkin-storage/zipkin2_cassandra clean verify +$ mvn -Dit.test='ITCassandraStorage$SpanStoreTest#getTraces_duration' -pl zipkin-storage/zipkin2_cassandra clean verify ``` ## Strict trace ID diff --git a/zipkin-storage/mysql-v1/README.md b/zipkin-storage/mysql-v1/README.md index bfd196f..08f5682 100644 --- a/zipkin-storage/mysql-v1/README.md +++ b/zipkin-storage/mysql-v1/README.md @@ -16,7 +16,7 @@ This module conditionally runs integration tests against a local MySQL instance. You minimally need to export the variable `MYSQL_USER` to run tests. Ex. ``` -$ MYSQL_USER=root ./mvnw clean install -pl :zipkin-storage-mysql-v1 +$ MYSQL_USER=root mvn clean install -pl :zipkin-storage-mysql-v1 ``` If you run tests via Maven or otherwise without specifying `MYSQL_USER`, @@ -90,5 +90,5 @@ $ mysql -uroot -Dzipkin < zipkin-storage/mysql-v1/src/main/resources/mysql.sql ```bash $ rm -rf rm -rf zipkin-storage/mysql-v1/src/main/java/zipkin2/storage/mysql/v1/internal/generated/ -$ ./mvnw -pl :zipkin-storage-mysql-v1 clean org.jooq:jooq-codegen-maven:generate com.mycila:license-maven-plugin:format +$ mvn -pl :zipkin-storage-mysql-v1 clean org.jooq:jooq-codegen-maven:generate com.mycila:license-maven-plugin:format ``` diff --git a/zipkin-ui/README.md b/zipkin-ui/README.md index b66980a..337a6bd 100644 --- a/zipkin-ui/README.md +++ b/zipkin-ui/README.md @@ -51,7 +51,7 @@ server and webapp to work together: ```bash # In one terminal, build the server and also make its dependencies (run from the root of the zipkin repo) -$ ./mvnw -DskipTests --also-make -pl zipkin-server clean install +$ mvn -DskipTests --also-make -pl zipkin-server clean install # Run it! $ java -jar ./zipkin-server/target/zipkin-server-*exec.jar ```
