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