Build: Fix kotlin-stdlib-jvm-minimal-for-test usages
Name changed after publishing with main artifacts for external usage
This commit is contained in:
+1
-1
@@ -32,7 +32,7 @@ public class ForTestCompileRuntime {
|
|||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
public static File minimalRuntimeJarForTests() {
|
public static File minimalRuntimeJarForTests() {
|
||||||
return assertExists(new File("dist/kotlin-stdlib-minimal-for-test.jar"));
|
return assertExists(new File("dist/kotlin-stdlib-jvm-minimal-for-test.jar"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
|
|||||||
@@ -321,7 +321,7 @@ fun NamedDomainObjectContainer<TopLevelArtifact>.dist() {
|
|||||||
file("$rootDir/build/build.txt")
|
file("$rootDir/build/build.txt")
|
||||||
|
|
||||||
// Use output-file-name when fixed https://github.com/JetBrains/gradle-idea-ext-plugin/issues/63
|
// Use output-file-name when fixed https://github.com/JetBrains/gradle-idea-ext-plugin/issues/63
|
||||||
archive("kotlin-stdlib-minimal-for-test.jar") {
|
archive("kotlin-stdlib-jvm-minimal-for-test.jar") {
|
||||||
extractedDirectory(stdlibMinimal.singleFile)
|
extractedDirectory(stdlibMinimal.singleFile)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
<trust group="org.jetbrains.kotlin" name="builtins"/>
|
<trust group="org.jetbrains.kotlin" name="builtins"/>
|
||||||
<trust group="org.jetbrains.kotlin" name="kotlin-stdlib-jdk7"/>
|
<trust group="org.jetbrains.kotlin" name="kotlin-stdlib-jdk7"/>
|
||||||
<trust group="org.jetbrains.kotlin" name="kotlin-stdlib-jdk8"/>
|
<trust group="org.jetbrains.kotlin" name="kotlin-stdlib-jdk8"/>
|
||||||
<trust group="org.jetbrains.kotlin" name="kotlin-stdlib-minimal-for-test"/>
|
<trust group="org.jetbrains.kotlin" name="kotlin-stdlib-jvm-minimal-for-test"/>
|
||||||
<trust group="org.jetbrains.kotlin" name="kotlin-project-model"/>
|
<trust group="org.jetbrains.kotlin" name="kotlin-project-model"/>
|
||||||
<trust file="kotlin-native-prebuilt-.*" regex="true"/>
|
<trust file="kotlin-native-prebuilt-.*" regex="true"/>
|
||||||
<trust file=".*-javadoc[.]jar" regex="true"/>
|
<trust file=".*-javadoc[.]jar" regex="true"/>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ val commonStdlibSources by configurations.creating
|
|||||||
val builtins by configurations.creating
|
val builtins by configurations.creating
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
stdlibMinimal("org.jetbrains.kotlin:kotlin-stdlib-minimal-for-test:$bootstrapKotlinVersion")
|
stdlibMinimal("org.jetbrains.kotlin:kotlin-stdlib-jvm-minimal-for-test:$bootstrapKotlinVersion")
|
||||||
stdlibJS("org.jetbrains.kotlin:kotlin-stdlib-js:$bootstrapKotlinVersion") { isTransitive = false }
|
stdlibJS("org.jetbrains.kotlin:kotlin-stdlib-js:$bootstrapKotlinVersion") { isTransitive = false }
|
||||||
stdlibSources("org.jetbrains.kotlin:kotlin-stdlib:$bootstrapKotlinVersion:sources") { isTransitive = false }
|
stdlibSources("org.jetbrains.kotlin:kotlin-stdlib:$bootstrapKotlinVersion:sources") { isTransitive = false }
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@file:Suppress("ACTUAL_WITHOUT_EXPECT") // for building kotlin-stdlib-minimal-for-test
|
@file:Suppress("ACTUAL_WITHOUT_EXPECT") // for building kotlin-stdlib-jvm-minimal-for-test
|
||||||
|
|
||||||
package kotlin
|
package kotlin
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@file:Suppress("ACTUAL_WITHOUT_EXPECT") // for building kotlin-stdlib-minimal-for-test
|
@file:Suppress("ACTUAL_WITHOUT_EXPECT") // for building kotlin-stdlib-jvm-minimal-for-test
|
||||||
|
|
||||||
package kotlin.text
|
package kotlin.text
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@file:Suppress("ACTUAL_WITHOUT_EXPECT") // for building kotlin-stdlib-minimal-for-test
|
@file:Suppress("ACTUAL_WITHOUT_EXPECT") // for building kotlin-stdlib-jvm-minimal-for-test
|
||||||
|
|
||||||
package kotlin.collections
|
package kotlin.collections
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user