diff --git a/README.adoc b/README.adoc index 4b9b1bd76..2b88152c4 100644 --- a/README.adoc +++ b/README.adoc @@ -1,7 +1,7 @@ = Asciidoctor Gradle Plugin Andres Almiray :version: 1.5.3-SNAPSHOT -:version-published: 1.5.2 +:version-published: 1.5.3 :asciidoc-url: http://asciidoc.org :asciidoctor-url: http://asciidoctor.org :issues: https://github.com/asciidoctor/asciidoctor-maven-plugin/issues @@ -13,7 +13,7 @@ Andres Almiray :asciidoctor-docs: http://asciidoctor.org/docs/ :project-name: asciidoctor-gradle-plugin :project-full-path: asciidoctor/asciidoctor-gradle-plugin -:github-branch: development +:github-branch: master :linkattrs: image:https://ci.appveyor.com/api/projects/status/db102rphsu5lviv6/branch/{github-branch}?svg=true&passingText={github-branch}%20-%20OK&failingText={github-branch}%20-%20Fails&pendingText={github-branch}%20-%20Pending[Build Status", link="https://ci.appveyor.com/project/{project-full-path}/branch/{github-branch}"] @@ -280,7 +280,7 @@ Notice how spaces are escaped in the last key/value pair. == Configuration -This plugin uses `asciidoctorj-1.5.1` by default, however, you can change this by +This plugin uses `asciidoctorj-1.5.3.2` by default, however, you can change this by defining a value on the +asciidoctorj+ extension, like so [source,groovy] diff --git a/gradle.properties b/gradle.properties index cf319aab2..1ba2eb62f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version = 1.5.3-SNAPSHOT +version = 1.5.3 group = org.asciidoctor sourceCompatibility = 1.6 targetCompatibility = 1.6 diff --git a/gradle/publishing.gradle b/gradle/publishing.gradle index 509660eb9..0ae9d8ac0 100644 --- a/gradle/publishing.gradle +++ b/gradle/publishing.gradle @@ -47,7 +47,7 @@ if (!project.hasProperty('bintrayUsername')) ext.bintrayUsername = '' if (!project.hasProperty('bintrayApiKey')) ext.bintrayApiKey = '' bintray { - user = project.bintrayUsername + user = 'asciidoctor' key = project.bintrayApiKey - pkg.repo = 'asciidoctor' + pkg.repo = 'maven' }