From 6d090c6fc7b663dcbe0c13759c08a3e87f452746 Mon Sep 17 00:00:00 2001 From: Markus Amshove Date: Tue, 9 Feb 2016 07:56:58 +0100 Subject: [PATCH] add guide on how to include Kluent via gradle or maven --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 8797b420..998a8a50 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,23 @@ Kluent is a "Fluent Assertions" library written specifically for Kotlin. It uses the [Infix-Notations](https://kotlinlang.org/docs/reference/functions.html#infix-notation "Infix-Notation") and [Extension Functions](https://kotlinlang.org/docs/reference/extensions.html#extension-functions "Extension Functions") of Kotlin to provide a fluent wrapper around the JUnit-Asserts. +# Include it via gradle/maven + +Kluent is hosted in [jCenter](https://bintray.com/markusamshove/maven/Kluent/view# "jCenter") + +## Gradle + dependencies { + testCompile 'org.amshove.kluent:kluent:1.0' + } + +## Maven + + org.amshove.kluent + kluent + 1.0 + pom + + # Examples All examples can also be seen in Kluent's tests.