-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The error was "Class scala.tools.nsc.Global not found - continuing with a stub.", and the fix is to add a provided dep on the scala compiler. See fthomas/refined#256 for details.
- Loading branch information
Showing
1 changed file
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,10 @@ lazy val root = (project in file(".")) | |
// Dependencies | ||
libraryDependencies ++= Seq( | ||
"com.typesafe.play" %% "play-json" % "2.5.0", | ||
// Fix "Class scala.tools.nsc.Global not found - continuing with a stub." | ||
// build failure by adding a provided dep on the scala-compiler, see | ||
// https://github.com/fthomas/refined/issues/256 | ||
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Provided, | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
swsnr
Author
Contributor
|
||
"eu.timepit" %% "refined" % "0.7.0", | ||
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test" | ||
), | ||
|
Sorry for the inconvenience! I should have updated the release notes accordingly...