diff --git a/README.md b/README.md index 78ccef3..2b1d246 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,17 @@ - + - + @@ -22,23 +23,34 @@ a library which helps you in setting up parameterized tests and prioritise them to execute all of them. ---- + **Table of Content** - [Installation](#installation) - [License](#license) - # Installation -Minimalist will be published to maven central. -But it's in the making, stay tuned... +Minimalist is published to maven central. + +*build.gradle.kts*: +```kotlin +repositories { + mavenCentral() +} +dependencies { + testImplementation("com.tegonal.minimalist:minimalist:1.0.0") +} +``` # License Minimalist is licensed under [EUPL 1.2](https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12). + +Atrium is using +- [junit-jupiter-params](https://github.com/junit-team/junit5) licensed under [EPL 2.0](https://www.eclipse.org/legal/epl-v20.html) \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 3b03a90..3d9ca66 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { alias(libs.plugins.nexus.publish) } -version = "1.0.0-SNAPSHOT" +version = "1.0.0" group = "com.tegonal.minimalist" description = "Library which helps to setup and prioritise parameterized tests"