You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zipkin.apache.org by ad...@apache.org on 2019/05/17 06:54:49 UTC

[incubator-zipkin-website] branch master updated: Update quickstart with Apache coordinates (#15)

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-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 52d9176  Update quickstart with Apache coordinates (#15)
52d9176 is described below

commit 52d91761eea44af3eb736dd80d8f8994fc2c6a82
Author: Tommy Ludwig <89...@users.noreply.github.com>
AuthorDate: Fri May 17 15:54:45 2019 +0900

    Update quickstart with Apache coordinates (#15)
---
 pages/quickstart.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pages/quickstart.md b/pages/quickstart.md
index a68e63e..05986f9 100644
--- a/pages/quickstart.md
+++ b/pages/quickstart.md
@@ -23,21 +23,21 @@ docker run -d -p 9411:9411 openzipkin/zipkin
 
 ## Java
 
-If you have Java 8 or higher installed, the quickest way to get started is to fetch the [latest release](https://search.maven.org/remote_content?g=io.zipkin.java&a=zipkin-server&v=LATEST&c=exec) as a self-contained executable jar:
+If you have Java 8 or higher installed, the quickest way to get started is to fetch the [latest release](https://search.maven.org/remote_content?g=org.apache.zipkin&a=zipkin-server&v=LATEST&c=exec) as a self-contained executable jar:
 
 ~~~ bash
-curl -sSL https://zipkin.io/quickstart.sh | bash -s
+curl -sSL https://zipkin.apache.org/quickstart.sh | bash -s
 java -jar zipkin.jar
 ~~~
 
 ## Running from Source
 
-Zipkin can be run from source if you are developing new features. To achieve this, you'll need to get [Zipkin's source](https://github.com/openzipkin/zipkin) and build it.
+Zipkin can be run from source if you are developing new features. To achieve this, you'll need to get [Zipkin's source](https://github.com/apache/incubator-zipkin) and build it.
 
 ~~~ bash
 # get the latest source
-git clone https://github.com/openzipkin/zipkin
-cd zipkin
+git clone https://github.com/apache/incubator-zipkin
+cd incubator-zipkin
 # Build the server and also make its dependencies
 ./mvnw -DskipTests --also-make -pl zipkin-server clean install
 # Run the server