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