You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/scala/scalafix/sbt/BuildInfo.scala
+4-2
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,9 @@ object BuildInfo {
29
29
props.load(stream)
30
30
caseNone=>
31
31
sys.error(
32
-
s"failed to load the resource file '$propertiesPath'. To fix this problem, make sure to enable the sbt-scalafix in 'project/plugins.sbt' and validate that the scalafix-interfaces jar is available on the classpath of the sbt build."
32
+
s"failed to load the resource file '$propertiesPath'; "+
33
+
"to fix this problem, add \"ch.epfl.scala\" % \"scalafix-interfaces\""+
34
+
"to libraryDependencies in 'project/plugins.sbt'"
33
35
)
34
36
}
35
37
props
@@ -39,7 +41,7 @@ object BuildInfo {
39
41
Option(props.getProperty(key)).getOrElse {
40
42
sys.error(
41
43
s"sbt-scalafix property '$key' missing in $propertiesPath; "+
42
-
"to fix this problem, upgrade to the latest version of Scalafix."
44
+
"to fix this problem, upgrade to a more recent version of scalafix-interfaces"
0 commit comments