solved my problem with: ``` configurations.create(...
# multiplatform
k
solved my problem with:
Copy code
configurations.create('myconf')
dependencies {
    myconf 'mylib:mylib:1.2.3'
}
task doSomething(type: Copy) {
    from configurations. myconf.files.collect { zipTree(it) }
    into "somewhere"
}
kotlin {
 ...
}
jvmTest.dependsOn doSomething