Skip to content

chore: Remove unused publishing dependency. #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2024
Merged
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
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'
}
Loading