use of org.gradle.api.internal.tasks.scala.ScalaCompilerFactory in project gradle by gradle.
the class ScalaCompile method getCompiler.
protected org.gradle.language.base.internal.compile.Compiler<ScalaJavaJointCompileSpec> getCompiler(ScalaJavaJointCompileSpec spec) {
assertScalaClasspathIsNonEmpty();
if (compiler == null) {
ProjectInternal projectInternal = (ProjectInternal) getProject();
WorkerDaemonFactory workerDaemonFactory = getServices().get(WorkerDaemonFactory.class);
ScalaCompilerFactory scalaCompilerFactory = new ScalaCompilerFactory(projectInternal.getRootProject().getProjectDir(), workerDaemonFactory, getScalaClasspath(), getZincClasspath(), getProject().getGradle().getGradleUserHomeDir());
compiler = scalaCompilerFactory.newCompiler(spec);
}
return compiler;
}
Aggregations