diff --git a/README.md b/README.md index 8484f0f..c5d780e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,20 @@ # TKN + +[![Build Status](https://ci.norangeb.it/api/badges/norangebit/TKN/status.svg)](https://ci.norangeb.it/norangebit/TKN) +[![License](https://img.shields.io/badge/license-MIT-blue)](https://opensource.org/licenses/MIT) +[![Bintray](https://img.shields.io/bintray/v/untori/untori/TKN)](https://bintray.com/untori/untori/TKN) + + A Kotlin implementation of the [TCN](https://github.com/TCNCoalition/TCN) protocol. +## Installation + +1. Add maven repository `https://dl.bintray.com/untori/untori` +2. Add TKN dependence `it.unisannio.assd.untori:{version}` + ## Authors - [Raffaele Mignone](https://github.com/norangebit) - [Noemi Mincolelli](https://github.com/noemi3) + diff --git a/build.gradle.kts b/build.gradle.kts index ef56ab8..9df97bd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "it.unisannio.assd.untori" -version = "0.0.1-alpha-3" +version = "0.0.1-beta-1" repositories { mavenCentral() @@ -39,7 +39,7 @@ publishing { pom { name.set(project.name) description.set("A Kotlin implementation of the TCN protocol.") - url.set("https://git.norangeb.it/norangebit/TKN") + url.set("https://git.norangeb.it/Untori/TKN") licenses { license { name.set("The MIT License") @@ -62,12 +62,12 @@ bintray { repo = "untori" name = "TKN" userOrg = "untori" - vcsUrl = "https://git.norangeb.it/norangebit/TKN" + vcsUrl = "https://git.norangeb.it/Untori/TKN" description = "A Kotlin implementation of the TCN protocol." setLicenses("MIT") desc = description - version.name = "0.0.1-alpha-3" + version.name = "0.0.1-beta-1" } }