Skip to content

Commit

Permalink
Merge pull request #410 from scalacenter/resolvers-thisbuild
Browse files Browse the repository at this point in the history
docs: scalafixResolvers can only be set at ThisBuild level
  • Loading branch information
bjaglin committed Apr 17, 2024
2 parents 18c20a6 + 1ca5871 commit 9a58786
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/scalafix/sbt/ScalafixPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ object ScalafixPlugin extends AutoPlugin {
val scalafixResolvers: SettingKey[Seq[Repository]] =
settingKey[Seq[Repository]](
"Optional list of Maven/Ivy repositories to use for fetching custom rules. " +
"Can be set in ThisBuild or at project-level."
"Must be set in ThisBuild."
)
val scalafixDependencies: SettingKey[Seq[ModuleID]] =
settingKey[Seq[ModuleID]](
"Optional list of custom rules to install from Maven Central. " +
"Optional list of artifacts to resolve to run custom rules. " +
"Can be set in ThisBuild or at project-level."
)
val scalafixScalaBinaryVersion: SettingKey[String] =
Expand Down

0 comments on commit 9a58786

Please sign in to comment.