File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -113,15 +113,15 @@ final case class SbtCommunityProject(
113
113
override val docCommand =
114
114
if sbtDocCommand eq null then null else
115
115
val cmd = if sbtDocCommand.startsWith(" ;" ) then sbtDocCommand else s " ; $sbtDocCommand"
116
- s " $baseCommand set every useScaladoc := true; set every doc/logLevel := Level.Warn $cmd "
116
+ s " $baseCommand set every doc/logLevel := Level.Warn $cmd "
117
117
118
118
override val runCommandsArgs : List [String ] =
119
119
// Run the sbt command with the compiler version and sbt plugin set in the build
120
120
val sbtProps = Option (System .getProperty(" sbt.ivy.home" )) match
121
121
case Some (ivyHome) => List (s " -Dsbt.ivy.home= $ivyHome" )
122
122
case _ => Nil
123
123
extraSbtArgs ++ sbtProps ++ List (
124
- " -sbt-version" , " 1.4.7 " ,
124
+ " -sbt-version" , " 1.5.0-bin-20210302T081602 " ,
125
125
" -Dsbt.supershell=false" ,
126
126
s " -Ddotty.communitybuild.dir= $communitybuildDir" ,
127
127
s " --addPluginSbtFile= $sbtPluginFilePath"
Original file line number Diff line number Diff line change @@ -1353,7 +1353,6 @@ object Build {
1353
1353
// (publishLocal in `scala3-staging`).value
1354
1354
val pluginText =
1355
1355
s """ updateOptions in Global ~= (_.withLatestSnapshots(false))
1356
- |addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % " $sbtDottyVersion")
1357
1356
|addSbtPlugin("ch.epfl.lamp" % "sbt-community-build" % " $sbtCommunityBuildVersion")
1358
1357
|addSbtPlugin("org.scala-js" % "sbt-scalajs" % " $scalaJSVersion") """ .stripMargin
1359
1358
IO .write(baseDirectory.value / " sbt-dotty-sbt" , pluginText)
You can’t perform that action at this time.
0 commit comments