Skip to content

Commit

Permalink
Added support in gradle for groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
jnbdz committed May 19, 2024
1 parent 17cd34b commit c3364c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -95,6 +96,7 @@ sourceSets {
}
}

// TODO: Check
jar.manifest.attributes(
'Implementation-Title': project.name,
'Main-Class': application.mainClass,
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit c3364c6

Please sign in to comment.