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 0fc7655 commit 6e3fe3dCopy full SHA for 6e3fe3d
build.gradle.kts
@@ -150,6 +150,17 @@ tasks.withType<JavaCompile>().configureEach {
150
options.compilerArgs.add("-parameters")
151
}
152
153
+tasks.withType<Jar>().configureEach {
154
+ manifest {
155
+ attributes(
156
+ "Implementation-Title" to project.name,
157
+ "Implementation-Version" to project.version,
158
+ "Build-Jdk-Spec" to java.toolchain.languageVersion.get().toString(),
159
+ "Created-By" to "Gradle ${gradle.gradleVersion}",
160
+ )
161
+ }
162
+}
163
+
164
/**
165
* Disable doclint to avoid errors and warnings on missing JavaDoc comments.
166
*/
0 commit comments