From 1279072645fdb457a8878d1c6f67a3c7b2b61549 Mon Sep 17 00:00:00 2001 From: thenetworkgrinch Date: Wed, 23 Oct 2024 18:33:17 -0500 Subject: [PATCH] Fixed zip function, uncommented maven publishing for vendordep. --- publish.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/publish.gradle b/publish.gradle index ce2db1b..f10ff71 100644 --- a/publish.gradle +++ b/publish.gradle @@ -153,7 +153,7 @@ task vendordepJsonZip(type: Zip) { archiveBaseName = templateVendorFile archiveClassifier = "sources" - from("$buildDir/$templateVendorFile") { + from("$buildDir/repos/$templateVendorFile") { into '/' } dependsOn vendordepJson @@ -234,13 +234,13 @@ model { version pubVersion } -// vendordep(MavenPublication) { -// artifact vendordepJsonZip -// -// artifactId = "${baseArtifactId}-vendordep" -// groupId artifactGroupId -// version pubVersion -// } + vendordep(MavenPublication) { + artifact vendordepJsonZip + + artifactId = "${baseArtifactId}-vendordep" + groupId artifactGroupId + version pubVersion + } } } }