From 8f943a4b2671a4dd2f9f67d1ea432e54025ddc47 Mon Sep 17 00:00:00 2001 From: Isaac Brodsky Date: Tue, 12 Aug 2025 16:28:07 -0700 Subject: [PATCH] vanniktech: fix javadoc dependency --- build.gradle | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 6509386..9777cab 100644 --- a/build.gradle +++ b/build.gradle @@ -27,8 +27,6 @@ description = 'Java bindings for H3, a hierarchical hexagonal geospatial indexin java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 - withJavadocJar() - withSourcesJar() } repositories { @@ -116,10 +114,6 @@ jar { duplicatesStrategy = DuplicatesStrategy.WARN } -sourcesJar { - dependsOn buildH3 -} - mavenPublishing { coordinates(project.group, "h3", project.version) @@ -163,3 +157,7 @@ mavenPublishing { signAllPublications() } + +sourcesJar { + dependsOn buildH3 +}