File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
kotlinlib/src/mill/kotlinlib Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -90,19 +90,15 @@ trait KotlinModule extends JavaModule { outer =>
9090
9191 protected def kotlinWorkerRef : ModuleRef [KotlinWorkerModule ] = ModuleRef (KotlinWorkerModule )
9292
93- private [kotlinlib] def kotlinWorkerClasspath = Task {
94- defaultResolver().classpath(Seq (
95- Dep .millProjectModule(" mill-kotlinlib-worker-impl" )
96- ))
97- }
98-
9993 /**
10094 * The Java classpath resembling the Kotlin compiler.
10195 * Default is derived from [[kotlinCompilerIvyDeps ]].
10296 */
10397 def kotlinCompilerClasspath : T [Seq [PathRef ]] = Task {
104- defaultResolver().classpath(kotlinCompilerIvyDeps()) ++
105- kotlinWorkerClasspath()
98+ val deps = kotlinCompilerIvyDeps() ++ Seq (
99+ Dep .millProjectModule(" mill-kotlinlib-worker-impl" )
100+ )
101+ defaultResolver().classpath(deps)
106102 }
107103
108104 /**
You can’t perform that action at this time.
0 commit comments