Skip to content

Getting Started

Nadim Benabdenbi edited this page May 22, 2018 · 2 revisions

Quick Tour

@See the examples and the integration tests

Getting Binaries

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

maven

<dependency>
  <groupId>com.github.enadim</groupId>
  <artifactId>spring-cloud-ribbon-extensions</artifactId>
  <version>1.4.5</version>
</dependency>

gradle

dependencies {
    compile 'com.github.enadim:spring-cloud-ribbon-extensions:1.4.5'
}

gradle

<dependency org="com.github.enadim" name="spring-cloud-ribbon-extensions" rev="1.4.5" />

Building

To checkout the source and build:

$ git clone https://github.com/enadim/spring-cloud-ribbon-extensions.git
$ cd spring-cloud-ribbon-extensions
$ ./gradlew build

To perform a clean build:

$ ./gradlew clean build

To run integration tests:

$ ./gradlew build -Pit

To run ignore test & coverage failures:

$ ./gradlew build -PignoreFailures
Clone this wiki locally