Skip to content
This repository has been archived by the owner on Oct 5, 2018. It is now read-only.

Deprecate github pages #245

Merged
merged 2 commits into from
Mar 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {
compile gradleApi()

// grgit
compile 'org.ajoberstar:grgit:1.8.0'
compile 'org.ajoberstar:grgit:1.9.0'

// semver
compile 'com.github.zafarkhaja:java-semver:0.9.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class GithubPagesPlugin implements Plugin<Project> {
* @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)
}
Expand Down