Minor, change JVM runtime's Implementation-Title
It's not a compiler runtime, but rather a runtime for Kotlin apps
This commit is contained in:
@@ -608,7 +608,7 @@
|
||||
<attribute name="Built-By" value="${manifest.impl.vendor}"/>
|
||||
|
||||
<attribute name="Implementation-Vendor" value="${manifest.impl.vendor}"/>
|
||||
<attribute name="Implementation-Title" value="${manifest.impl.title.kotlin.jvm.runtime.and.stdlib}"/>
|
||||
<attribute name="Implementation-Title" value="${manifest.impl.title.kotlin.jvm.runtime}"/>
|
||||
<attribute name="Implementation-Version" value="${build.number}"/>
|
||||
</manifest>
|
||||
</jar>
|
||||
@@ -627,7 +627,7 @@
|
||||
<attribute name="Built-By" value="${manifest.impl.vendor}"/>
|
||||
|
||||
<attribute name="Implementation-Vendor" value="${manifest.impl.vendor}"/>
|
||||
<attribute name="Implementation-Title" value="${manifest.impl.title.kotlin.runtime.and.stdlib.sources}"/>
|
||||
<attribute name="Implementation-Title" value="${manifest.impl.title.kotlin.jvm.runtime.sources}"/>
|
||||
<attribute name="Implementation-Version" value="${build.number}"/>
|
||||
</manifest>
|
||||
</jar>
|
||||
|
||||
@@ -43,7 +43,7 @@ public class LibraryUtils {
|
||||
try {
|
||||
Properties properties = new Properties();
|
||||
properties.load(manifestProperties);
|
||||
jvmStdLib = properties.getProperty("manifest.impl.title.kotlin.jvm.runtime.and.stdlib");
|
||||
jvmStdLib = properties.getProperty("manifest.impl.title.kotlin.jvm.runtime");
|
||||
jsStdLib = properties.getProperty("manifest.impl.title.kotlin.javascript.stdlib");
|
||||
}
|
||||
catch (IOException e) {
|
||||
|
||||
@@ -6,8 +6,8 @@ manifest.impl.title.kotlin.compiler.sources=Kotlin Compiler Sources
|
||||
|
||||
manifest.impl.title.kotlin.compiler.ant.task=Kotlin Compiler Ant Tasks
|
||||
|
||||
manifest.impl.title.kotlin.jvm.runtime.and.stdlib=Kotlin Compiler Runtime + StdLib
|
||||
manifest.impl.title.kotlin.runtime.and.stdlib.sources=Kotlin Compiler Runtime + StdLib Sources
|
||||
manifest.impl.title.kotlin.jvm.runtime=Kotlin Runtime + StdLib
|
||||
manifest.impl.title.kotlin.jvm.runtime.sources=Kotlin Runtime + StdLib Sources
|
||||
manifest.impl.title.kotlin.javascript.stdlib=Kotlin JavaScript StdLib
|
||||
|
||||
manifest.impl.title.kotlin.preloader=Kotlin Preloader
|
||||
|
||||
Reference in New Issue
Block a user