diff --git a/lib/sdk/server/build.gradle b/lib/sdk/server/build.gradle index ac907cb..94a3fb6 100644 --- a/lib/sdk/server/build.gradle +++ b/lib/sdk/server/build.gradle @@ -22,7 +22,6 @@ plugins { id "com.github.johnrengelman.shadow" version "7.1.2" id "maven-publish" id "io.github.gradle-nexus.publish-plugin" version "1.3.0" apply false - id "org.ajoberstar.git-publish" version "2.1.3" id "idea" } @@ -617,18 +616,3 @@ task exportDependencies(type: Copy, dependsOn: compileJava) { into "packaging-test/temp/dependencies-all" from (configurations.internal.resolvedConfiguration.resolvedArtifacts.collect { it.file }) } - -gitPublish { - repoUri = 'git@github.com:launchdarkly/java-server-sdk.git' - branch = 'gh-pages' - contents { - from javadoc - } - preserve { - // There's a dummy .circleci/config.yml file on the gh-pages branch so CircleCI won't - // complain when it sees a commit there. The git-publish plugin would delete that file if - // we didn't protect it here. - include '.circleci/config.yml' - } - commitMessage = 'publishing javadocs' -}