File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
runtime/protocol/http-client-engines/test-suite Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -96,8 +96,10 @@ abstract class TestServerService :
9696val testServerService = gradle.sharedServices.registerIfAbsent(" testServers" , TestServerService ::class ) {
9797 parameters.sslConfigPath.set(File .createTempFile(" ssl-" , " .cfg" ).absolutePath)
9898 parameters.mainClass.set(" aws.smithy.kotlin.runtime.http.test.util.TestServersKt" )
99- val kotlinCompilation = kotlin.targets.getByName(" jvm" ).compilations[" test" ]
100- parameters.classpath.from(kotlinCompilation.runtimeDependencyFiles!! )
99+ }
100+
101+ afterEvaluate {
102+ testServerService.get().parameters.classpath.from(kotlin.targets.getByName(" jvm" ).compilations[" test" ].runtimeDependencyFiles!! )
101103}
102104
103105abstract class StartTestServersTask : DefaultTask () {
You can’t perform that action at this time.
0 commit comments