Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Commit

Permalink
add guide on how to include Kluent via gradle or maven
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusAmshove committed Feb 9, 2016
1 parent c42cabf commit 6d090c6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<dependency>
<groupId>org.amshove.kluent</groupId>
<artifactId>kluent</artifactId>
<version>1.0</version>
<type>pom</type>
</dependency>

# Examples
All examples can also be seen in Kluent's tests.

Expand Down

0 comments on commit 6d090c6

Please sign in to comment.