-
Notifications
You must be signed in to change notification settings - Fork 16
Getting Started
Nadim Benabdenbi edited this page May 22, 2018
·
2 revisions
@See the examples and the integration tests
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" />
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