We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c3b172 commit c885c60Copy full SHA for c885c60
build.gradle
@@ -9,6 +9,7 @@ plugins {
9
id 'maven-publish'
10
id 'signing'
11
id "io.github.gradle-nexus.publish-plugin" version "1.0.0"
12
+ id "biz.aQute.bnd.builder" version "6.2.0"
13
}
14
15
def getDevelopmentVersion() {
@@ -135,3 +136,10 @@ tasks.withType(PublishToMavenRepository) {
135
136
dependsOn build
137
138
139
+jar {
140
+ manifest {
141
+ attributes('Automatic-Module-Name': 'graphql-java-extended-scalars',
142
+ '-exportcontents': 'graphql.scalars.*',
143
+ '-removeheaders': 'Private-Package')
144
+ }
145
+}
0 commit comments