Remove Build-Jdk manifest property

To get rid of an additional cause of potential artifact indeterminacy.

#KT-26102 Fixed
This commit is contained in:
Ilya Gorbunov
2018-10-27 06:07:50 +03:00
parent ffc7d302fb
commit a341110304
2 changed files with 1 additions and 3 deletions
-1
View File
@@ -194,7 +194,6 @@ fun Jar.setupPublicJar(baseName: String, classifier: String = "") {
put("Implementation-Vendor", "JetBrains")
put("Implementation-Title", baseName)
put("Implementation-Version", buildNumber)
put("Build-Jdk", System.getProperty("java.version"))
}
}
+1 -2
View File
@@ -83,8 +83,7 @@ ext.manifestAttributes = { Manifest manifest, Project project, String component
attributes \
'Implementation-Vendor': 'JetBrains',
'Implementation-Title': project.archivesBaseName,
'Implementation-Version': project.buildNumber,
'Build-Jdk': System.getProperty('java.version')
'Implementation-Version': project.buildNumber
if (component != null) {
attributes \