improve the error message when Scala version was not detected#73
Merged
improve the error message when Scala version was not detected#73
Conversation
When Scala version is set to `auto`, and for some reason the resolution is incomplete (it seems to happen at CI more frequently than normal lately), the launcher will print out the following error message. ## before ``` error during sbt execution: No Scala version specified or detected ``` ## after now it will print this instead: ``` [error] [launcher] error during sbt launcher: sbt/sbt#4955! [error] [launcher] sbt launcher is unable to detect the Scala version for jline:jline; [error] [launcher] this likely indicates an incomplete artifact resolution and/or corrupt boot cache (~/.sbt/boot/). [error] [launcher] the following is the full classpath that was retrieved for jline:jline: [error] [launcher] * /tmp/boot/other/jline/jline/2.14.6/jline-2.14.6.jar ```
|
Excuse me. I got the same error messages when in terminal. Would you tell me what should I do? Mac OSX 10.14.6 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes sbt/sbt#4955
When Scala version is set to
auto, and for some reason the resolution is incomplete (it seems to happen at CI more frequently than normal lately), the launcher will print out the following error message.before
after
now it will print this instead: