Skip to content

Commit 8ec9e91

Browse files
committed
fix
1 parent 72cdffc commit 8ec9e91

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

runtime/protocol/http-client-engines/test-suite/build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,10 @@ abstract class TestServerProvider :
9595

9696
val testServerProvider = gradle.sharedServices.registerIfAbsent("testServers", TestServerProvider::class) {
9797
parameters.sslConfigPath.set(File.createTempFile("ssl-", ".cfg").absolutePath)
98-
parameters.classpath.from(kotlin.targets.getByName("jvm").compilations["test"].runtimeDependencyFiles!!)
98+
}
99+
100+
afterEvaluate {
101+
testServerProvider.get().parameters.classpath.from(kotlin.targets.getByName("jvm").compilations["test"].runtimeDependencyFiles!!)
99102
}
100103

101104
abstract class StartTestServersTask : DefaultTask() {

0 commit comments

Comments
 (0)