Skip to content

Commit 7d7618c

Browse files
committed
Tweakar litt på kva som byggjast når, sånn at vi kan bruke Gradle configuration cache også her
1 parent 7936b6e commit 7d7618c

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

buildSrc/src/main/kotlin/etterlatte.common.gradle.kts

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import org.gradle.api.tasks.testing.logging.TestLogEvent
21
import org.gradle.accessors.dm.LibrariesForLibs
2+
import org.gradle.api.tasks.testing.logging.TestLogEvent
33

44
val libs = the<LibrariesForLibs>()
55

@@ -46,9 +46,18 @@ tasks {
4646
}
4747
}
4848

49+
val configuration =
50+
configurations.runtimeClasspath.get().map {
51+
it.toPath().toFile()
52+
}
53+
val buildDirectory = layout.buildDirectory
4954
doLast {
50-
configurations.runtimeClasspath.get().forEach {
51-
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
5261
if (!file.exists()) {
5362
it.copyTo(file)
5463
}

0 commit comments

Comments
 (0)