File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ infra_version=0.3.0-dev-73
7
7
kotlin.code.style =official
8
8
kotlin.incremental.multiplatform =true
9
9
kotlin.mpp.enableGranularSourceSetsMetadata =true
10
- kotlin.mpp.enableCompatibilityMetadataVariant =true
11
10
kotlin.native.distribution.type =prebuilt
12
11
13
12
org.gradle.jvmargs =-Xmx4g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding =UTF-8
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ val createClasspathManifest by tasks.registering {
54
54
dependsOn(artifactsTask(" jvm" ))
55
55
dependsOn(artifactsTask(" jsIr" ))
56
56
dependsOn(artifactsTask(" wasm" ))
57
- dependsOn(artifactsTask(" metadata " ))
57
+ dependsOn(artifactsTask(" allMetadata " ))
58
58
dependsOn(artifactsTaskNativeKlibs())
59
59
60
60
val outputDir = file(" $buildDir /$name " )
@@ -63,7 +63,7 @@ val createClasspathManifest by tasks.registering {
63
63
outputDir.apply {
64
64
mkdirs()
65
65
resolve(" plugin-classpath.txt" ).writeText(plugin.classpath().resolve(" plugin-classpath.txt" ).readText())
66
- resolve(" runtime-metadata.txt" ).writeText(artifactsTask(" metadata " ).archiveFilePath)
66
+ resolve(" runtime-metadata.txt" ).writeText(artifactsTask(" allMetadata " ).archiveFilePath)
67
67
resolve(" runtime-jvm.txt" ).writeText(artifactsTask(" jvm" ).archiveFilePath)
68
68
resolve(" runtime-jsIr.txt" ).writeText(artifactsTask(" jsIr" ).archiveFilePath)
69
69
resolve(" runtime-wasm.txt" ).writeText(artifactsTask(" wasm" ).archiveFilePath)
You can’t perform that action at this time.
0 commit comments