Skip to content

Commit

Permalink
fix(jar): Remove Build-Timestamp attr from manifest (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseLion committed Nov 17, 2023
1 parent 5501f8b commit f8dd155
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
group = 'io.github.joselion'

java {
// sourceCompatibility = JavaLanguageVersion.of(16)
sourceCompatibility = JavaLanguageVersion.of(16)
toolchain {
languageVersion = JavaLanguageVersion.of(21)
vendor = JvmVendorSpec.ORACLE
Expand All @@ -44,7 +44,6 @@ jar {
attributes(
'Build-Jdk': "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
'Build-Jdk-Spec': java.sourceCompatibility,
'Build-Timestamp': LocalDateTime.now().toString(),
'Created-By': "Gradle ${gradle.gradleVersion}",
'Implementation-Title': project.name,
'Implementation-Vendor': 'Jose Luis Leon',
Expand Down

0 comments on commit f8dd155

Please sign in to comment.