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' - } - } - } - } -}