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 9099e74 commit 7227b95Copy full SHA for 7227b95
build.gradle.kts
@@ -82,8 +82,8 @@ java {
82
tasks.withType<Jar>().configureEach {
83
manifest.attributes(
84
"Implementation-Title" to project.name,
85
- "Implementation-Vendor" to metadata.organization.get().name.get(),
86
- "Implementation-Version" to project.version,
+ "Implementation-Vendor" to metadata.organization.provider.flatMap { it.name },
+ "Implementation-Version" to provider { project.version.toString() },
87
)
88
}
89
0 commit comments