@@ -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"
@@ -137,7 +137,7 @@ object projects:
137
137
138
138
private def forceDoc (projects : String * ) =
139
139
projects.map(project =>
140
- s """ ;set $project/Compile/doc/sources ++ = ( $project/Compile/doc/tastyFiles ).value ; $project/doc """
140
+ s """ ;set $project/Compile/doc/sources : = ( $project/Compile/sources ).value ; $project/doc """
141
141
).mkString(" " )
142
142
143
143
private def aggregateDoc (in : String )(projects : String * ) =
0 commit comments