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:
Alexander Udalov
2014-08-15 11:48:03 +04:00
parent 09d3ddfcae
commit cc4a67da71
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -608,7 +608,7 @@
<attribute name="Built-By" value="${manifest.impl.vendor}"/> <attribute name="Built-By" value="${manifest.impl.vendor}"/>
<attribute name="Implementation-Vendor" 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}"/> <attribute name="Implementation-Version" value="${build.number}"/>
</manifest> </manifest>
</jar> </jar>
@@ -627,7 +627,7 @@
<attribute name="Built-By" value="${manifest.impl.vendor}"/> <attribute name="Built-By" value="${manifest.impl.vendor}"/>
<attribute name="Implementation-Vendor" 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}"/> <attribute name="Implementation-Version" value="${build.number}"/>
</manifest> </manifest>
</jar> </jar>
@@ -43,7 +43,7 @@ public class LibraryUtils {
try { try {
Properties properties = new Properties(); Properties properties = new Properties();
properties.load(manifestProperties); 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"); jsStdLib = properties.getProperty("manifest.impl.title.kotlin.javascript.stdlib");
} }
catch (IOException e) { catch (IOException e) {
+2 -2
View File
@@ -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.compiler.ant.task=Kotlin Compiler Ant Tasks
manifest.impl.title.kotlin.jvm.runtime.and.stdlib=Kotlin Compiler Runtime + StdLib manifest.impl.title.kotlin.jvm.runtime=Kotlin Runtime + StdLib
manifest.impl.title.kotlin.runtime.and.stdlib.sources=Kotlin Compiler Runtime + StdLib Sources manifest.impl.title.kotlin.jvm.runtime.sources=Kotlin Runtime + StdLib Sources
manifest.impl.title.kotlin.javascript.stdlib=Kotlin JavaScript StdLib manifest.impl.title.kotlin.javascript.stdlib=Kotlin JavaScript StdLib
manifest.impl.title.kotlin.preloader=Kotlin Preloader manifest.impl.title.kotlin.preloader=Kotlin Preloader