We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f523aa6 commit 3d48cc0Copy full SHA for 3d48cc0
plugin/build.gradle
@@ -63,7 +63,7 @@ jar {
63
"Implementation-Version": projectVersion,
64
"Implementation-Vendor": 'Grace Plugins')
65
enabled = true
66
- archiveClassifier.set('')
+ archiveClassifier.set('plugin')
67
includeEmptyDirs = false
68
}
69
@@ -90,6 +90,10 @@ publishing {
90
91
from components.java
92
93
+ artifact source: "${project.buildDir}/classes/groovy/main/META-INF/grails-plugin.xml",
94
+ classifier: "plugin",
95
+ extension: 'xml'
96
+
97
pom {
98
name = "Grace View Components"
99
description = "A Grace plugin for creating reusable, testable and encapsulated view components."
plugin/src/main/resources/META-INF/grails-plugin.xml
0 commit comments