Skip to content

Commit

Permalink
Upgrade git-publish plugin version to 0.4.1
Browse files Browse the repository at this point in the history
from 0.3.2
  • Loading branch information
warnyul committed May 15, 2018
1 parent 1787a9c commit 5800d1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'maven-publish'
id 'com.jfrog.bintray' version '1.7.3'
id 'com.gradle.plugin-publish' version '0.9.7'
id 'org.ajoberstar.git-publish' version '0.3.2'
id 'org.ajoberstar.git-publish' version '0.4.1'
}

test {
Expand Down Expand Up @@ -192,13 +192,13 @@ publishPlugins.enabled = isRelease()
def javaDocFolder = isRelease() ? project.version : 'snapshots'

gitPublish {
repoUri = "https://${SCM_URL}.git"
repoUri = "https://${SCM_URL}.git".toString()
branch = 'gh-pages'

contents {
from groovydoc.getDestinationDir()
into "groovydoc${File.separator}${javaDocFolder}"
}

commitMessage = "Publish groovydoc for ${project.version} version"
commitMessage = "Publish groovydoc for ${project.version} version".toString()
}

0 comments on commit 5800d1a

Please sign in to comment.