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 8ce1f92 commit 3573279Copy full SHA for 3573279
scalafix-sbt/src/sbt-test/sbt-scalafix/cross-build/build.sbt
@@ -1,6 +1,11 @@
1
import _root_.scalafix.Versions
2
-updateOptions in ThisBuild := updateOptions.value.withLatestSnapshots(false)
3
-scalacOptions in ThisBuild += "-Ywarn-adapted-args" // For NoAutoTupling
+inThisBuild(
+ List(
4
+ updateOptions := updateOptions.value.withLatestSnapshots(false),
5
+ scalacOptions += "-Ywarn-adapted-args", // For NoAutoTupling
6
+ resolvers += Resolver.sonatypeRepo("releases")
7
+ )
8
+)
9
lazy val root = project
10
.in(file("."))
11
.aggregate(
0 commit comments