Remove Build-Jdk manifest property
To get rid of an additional cause of potential artifact indeterminacy. #KT-26102 Fixed
This commit is contained in:
@@ -194,7 +194,6 @@ fun Jar.setupPublicJar(baseName: String, classifier: String = "") {
|
|||||||
put("Implementation-Vendor", "JetBrains")
|
put("Implementation-Vendor", "JetBrains")
|
||||||
put("Implementation-Title", baseName)
|
put("Implementation-Title", baseName)
|
||||||
put("Implementation-Version", buildNumber)
|
put("Implementation-Version", buildNumber)
|
||||||
put("Build-Jdk", System.getProperty("java.version"))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -83,8 +83,7 @@ ext.manifestAttributes = { Manifest manifest, Project project, String component
|
|||||||
attributes \
|
attributes \
|
||||||
'Implementation-Vendor': 'JetBrains',
|
'Implementation-Vendor': 'JetBrains',
|
||||||
'Implementation-Title': project.archivesBaseName,
|
'Implementation-Title': project.archivesBaseName,
|
||||||
'Implementation-Version': project.buildNumber,
|
'Implementation-Version': project.buildNumber
|
||||||
'Build-Jdk': System.getProperty('java.version')
|
|
||||||
|
|
||||||
if (component != null) {
|
if (component != null) {
|
||||||
attributes \
|
attributes \
|
||||||
|
|||||||
Reference in New Issue
Block a user