From 620b8c495de8c342785eff0d123bf8058080f6b8 Mon Sep 17 00:00:00 2001 From: nea Date: Fri, 10 Mar 2023 21:27:26 +0100 Subject: gradle publishing --- test/build.gradle.kts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/build.gradle.kts b/test/build.gradle.kts index 490253e..e81e8e7 100644 --- a/test/build.gradle.kts +++ b/test/build.gradle.kts @@ -6,7 +6,14 @@ plugins { publishing { publications { create("yarn") { - artifact(file("aaa")) + artifact(file("aaa")) { classifier = "" + this.extension = "jar"} } } -} \ No newline at end of file + publications.filterIsInstance().forEach { + it.pom { + url.set("https://git.nea.moe/nea/mcprepack") + } + } +} + -- cgit