From c3364c63c35ddfe7d0ae88493452f021dab91b33 Mon Sep 17 00:00:00 2001 From: jnbdz Date: Sun, 19 May 2024 03:49:09 -0400 Subject: [PATCH] Added support in gradle for groovy --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index ec87b76..c61b4f5 100644 --- a/build.gradle +++ b/build.gradle @@ -14,6 +14,7 @@ plugins { id 'checkstyle' id 'codenarc' id 'io.quarkus' + id 'groovy' id 'org.asciidoctor.jvm.convert' version '3.3.2' // 4.0.2 does not compile id 'org.asciidoctor.jvm.pdf' version '3.3.2' // 4.0.2 does not compile id 'org.owasp.dependencycheck' version '9.0.9' apply false //Not tested after 7.4.4 @@ -95,6 +96,7 @@ sourceSets { } } +// TODO: Check jar.manifest.attributes( 'Implementation-Title': project.name, 'Main-Class': application.mainClass, @@ -495,7 +497,7 @@ publishing { publications { ofbizPluginPublication(MavenPublication) { artifactId = project.findProperty('pluginId') ?: 'defaultPluginId' - groupId = project.findProperty('pluginGroup') ?: 'org.apache.ofbiz.plugin' + groupId = project.findProperty('pluginGroup') ?: 'org.sitenetsoft.sunseterp.framework.plugin' version = project.findProperty('pluginVersion') ?: '0.1.0-SNAPSHOT' artifact tasks.named('createPluginArchive').get()