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 7c1e48e commit 2311631Copy full SHA for 2311631
compiler/src/main/scala/org/scalaexercises/exercises/compiler/Compiler.scala
@@ -290,7 +290,7 @@ case class Compiler() {
290
val libraryAsDependency =
291
s"${buildMetaInfo.organization}:${buildMetaInfo.name}_${buildMetaInfo.scalaVersion
292
.substring(0, 4)}:${buildMetaInfo.version}"
293
- List(libraryAsDependency) // :: buildMetaInfo.libraryDependencies.toList
+ libraryAsDependency :: buildMetaInfo.libraryDependencies.toList
294
// Evaluator can resolve transitive dependencies, the reason of only passing the library as a dependency
295
}
296
0 commit comments