From d87b81549e762b955fe8394b813f00b082ef80e3 Mon Sep 17 00:00:00 2001 From: Amanjeet Singh Date: Fri, 30 Aug 2024 14:41:54 +0530 Subject: [PATCH] feat: add publish plugin in maestro-ai --- maestro-ai/build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maestro-ai/build.gradle.kts b/maestro-ai/build.gradle.kts index 086a717da9..dfaf07a024 100644 --- a/maestro-ai/build.gradle.kts +++ b/maestro-ai/build.gradle.kts @@ -13,6 +13,12 @@ application { mainClass.set("maestro.ai.DemoAppKt") } +plugins.withId("com.vanniktech.maven.publish") { + mavenPublish { + sonatypeHost = com.vanniktech.maven.publish.SonatypeHost.S01 + } +} + tasks.named("jar") { manifest { attributes["Main-Class"] = "maestro.ai.DemoAppKt"