Skip to content

Commit

Permalink
chore: Remove unused publishing dependency. (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion authored Aug 7, 2024
1 parent a2dd3cb commit 1af87f0
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions lib/sdk/server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down Expand Up @@ -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 = '[email protected]: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'
}

0 comments on commit 1af87f0

Please sign in to comment.