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 ad077eb commit a9fc833Copy full SHA for a9fc833
build.gradle
@@ -129,6 +129,20 @@ subprojects { subproject ->
129
from javadoc
130
}
131
132
+ jar {
133
+ manifest {
134
+ attributes(
135
+ 'Implementation-Version': version,
136
+ 'Created-By': "JDK ${System.properties['java.version']} (${System.properties['java.specification.vendor']})",
137
+ 'Implementation-Title': subproject.name,
138
+ 'Implementation-Vendor-Id': subproject.group,
139
+ 'Implementation-Vendor': 'Pivotal Software, Inc.',
140
+ 'Implementation-URL': linkHomepage,
141
+ 'Automatic-Module-Name': subproject.name.replace('-', '.') // for Jigsaw
142
+ )
143
+ }
144
145
+
146
artifacts {
147
archives sourcesJar
148
archives javadocJar
0 commit comments