We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc123a6 commit 228a85cCopy full SHA for 228a85c
server/src/main/scala/org/scalaexercises/evaluator/evaluation.scala
@@ -76,6 +76,11 @@ class Evaluator(timeout: FiniteDuration = 20.seconds)(
76
if (jars.nonEmpty) {
77
val newJars = jars.mkString(File.pathSeparator)
78
classpath.value = newJars + File.pathSeparator + classpath.value
79
+
80
+ (jars map (_.toString)).find(_.contains("paradise")) match {
81
+ case Some(compilerJar) => plugin.appendToValue(compilerJar)
82
+ case None =>
83
+ }
84
}
85
86
processArguments(compilerFlags, processAll = true)
0 commit comments