From 9858dc376fbb5eeb20b66bb683c1d523690177d0 Mon Sep 17 00:00:00 2001 From: AJ Alt Date: Sat, 14 Jul 2018 14:10:53 -0700 Subject: [PATCH] Release version 1.1.0 --- README.md | 16 ++++------------ gradle.properties | 2 +- maven.gradle | 21 --------------------- 3 files changed, 5 insertions(+), 34 deletions(-) mode change 100755 => 100644 gradle.properties delete mode 100755 maven.gradle diff --git a/README.md b/README.md index 12db13b9f..dc53ff388 100644 --- a/README.md +++ b/README.md @@ -99,21 +99,13 @@ with(TermColors()) { ## Installation -Mordant is distributed with [jitpack](https://jitpack.io/#ajalt/mordant). - -First, add Jitpack to your gradle repositories. - -```groovy -repositories { - maven { url "https://jitpack.io" } -} -``` - -Then add the dependency on mordant. +Mordant is distributed through Maven Central, +[Jcenter](https://bintray.com/ajalt/maven/mordant) and +[Jitpack](https://jitpack.io/#ajalt/mordant). ```groovy dependencies { - compile 'com.github.ajalt.mordant:mordant:1.0.1' + implementation 'com.github.ajalt.mordant:mordant:1.1.0' } ``` diff --git a/gradle.properties b/gradle.properties old mode 100755 new mode 100644 index c071e6207..13f58bfb0 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ GROUP=com.github.ajalt -VERSION_NAME=1.0.1 +VERSION_NAME=1.1.0 diff --git a/maven.gradle b/maven.gradle deleted file mode 100755 index 87448c905..000000000 --- a/maven.gradle +++ /dev/null @@ -1,21 +0,0 @@ -apply plugin: 'maven' -apply plugin: 'org.jetbrains.dokka' - -task sourcesJar(type: Jar, dependsOn: classes) { - classifier = 'sources' - from sourceSets.main.allSource -} - -install { - repositories.mavenInstaller { - pom.project { - licenses { - license { - name 'The Apache Software License, Version 2.0' - url 'http://www.apache.org/licenses/LICENSE-2.0.txt' - distribution 'repo' - } - } - } - } -}