Skip to content

Getting Started 2.0

Carl Mastrangelo edited this page Jan 24, 2020 · 7 revisions

Getting Binaries

Binaries and dependency information for Maven, Ivy, Gradle and others can be found at http://search.maven.org.

Latest version: Download

Example for Maven:

<dependency>
    <groupId>com.netflix.zuul</groupId>
    <artifactId>zuul-core</artifactId>
    <version>2.1.5</version>
</dependency>

and for Gradle:

compile "com.netflix.zuul:zuul-core:2.1.5"

Building

To checkout the source and build:

$ git clone git@github.com:Netflix/zuul.git
$ cd zuul/
$ ./gradlew build

To do a clean build:

$ ./gradlew clean build

Running

You can run the sample app with this command:

$ ./gradlew run