From b8fbe3cb7d24345298a92844a967ec656755814c Mon Sep 17 00:00:00 2001 From: Andrew Oberstar Date: Wed, 22 Mar 2017 19:43:46 -0500 Subject: [PATCH] deprecate org.ajoberstar.github-pages The replacement plugin org.ajoberstar.git-publish has equivalent features and a better (i.e. existent) test suite. This is a separate repo to decouple its evolution from gradle-git. https://github.com/ajoberstar/gradle-git-publish --- .../org/ajoberstar/gradle/git/ghpages/GithubPagesPlugin.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/groovy/org/ajoberstar/gradle/git/ghpages/GithubPagesPlugin.groovy b/src/main/groovy/org/ajoberstar/gradle/git/ghpages/GithubPagesPlugin.groovy index fab30b9..daea1ef 100644 --- a/src/main/groovy/org/ajoberstar/gradle/git/ghpages/GithubPagesPlugin.groovy +++ b/src/main/groovy/org/ajoberstar/gradle/git/ghpages/GithubPagesPlugin.groovy @@ -37,6 +37,7 @@ class GithubPagesPlugin implements Plugin { * @param project the project */ void apply(Project project) { + project.logger.warn('org.ajoberstar.github-pages is deprecated will be removed in gradle-git 2.0.0. Users should migrate to org.ajoberstar.git-publish (https://github.com/ajoberstar/gradle-git-publish).') GithubPagesPluginExtension extension = project.extensions.create('githubPages', GithubPagesPluginExtension, project) configureTasks(project, extension) }