Skip to content

Commit

Permalink
Improve some lazy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Aug 27, 2024
1 parent 1939a3b commit af55582
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ java {
tasks.withType<Jar>().configureEach {
manifest.attributes(
"Implementation-Title" to project.name,
"Implementation-Vendor" to metadata.organization.get().name.get(),
"Implementation-Version" to project.version,
"Implementation-Vendor" to metadata.organization.provider.flatMap { it.name },
"Implementation-Version" to provider { project.version.toString() },
)
}

Expand Down

0 comments on commit af55582

Please sign in to comment.