Build: Workaround SOE in kotlin-stdlib-common-sources
Probably gradle bug
This commit is contained in:
@@ -8,8 +8,11 @@ dependencies {
|
|||||||
sources(project(":kotlin-stdlib-common", configuration = "sources"))
|
sources(project(":kotlin-stdlib-common", configuration = "sources"))
|
||||||
}
|
}
|
||||||
|
|
||||||
artifacts {
|
val buildSources by tasks.creating(Jar::class.java) {
|
||||||
add("runtime", provider { sources.singleFile }) {
|
dependsOn(sources)
|
||||||
classifier = "sources"
|
from(provider { zipTree(sources.singleFile) })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
artifacts.add("runtime", buildSources) {
|
||||||
|
classifier = "sources"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user