We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7936b6e commit 7d7618cCopy full SHA for 7d7618c
buildSrc/src/main/kotlin/etterlatte.common.gradle.kts
@@ -1,5 +1,5 @@
1
-import org.gradle.api.tasks.testing.logging.TestLogEvent
2
import org.gradle.accessors.dm.LibrariesForLibs
+import org.gradle.api.tasks.testing.logging.TestLogEvent
3
4
val libs = the<LibrariesForLibs>()
5
@@ -46,9 +46,18 @@ tasks {
46
}
47
48
49
+ val configuration =
50
+ configurations.runtimeClasspath.get().map {
51
+ it.toPath().toFile()
52
+ }
53
+ val buildDirectory = layout.buildDirectory
54
doLast {
- configurations.runtimeClasspath.get().forEach {
- val file = layout.buildDirectory.file("libs/${it.name}").get().asFile
55
+ configuration.forEach {
56
+ val file =
57
+ buildDirectory
58
+ .file("libs/${it.name}")
59
+ .get()
60
+ .asFile
61
if (!file.exists()) {
62
it.copyTo(file)
63
0 commit comments