-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Remove unused publishing dependency. (#38)
- Loading branch information
1 parent
a2dd3cb
commit 1af87f0
Showing
1 changed file
with
0 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 = '[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' | ||
} |