File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
sbt-dotty/src/dotty/tools/sbtplugin Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,8 @@ object Build {
289289 compilerJar = jars.find(_.getName.startsWith(" dotty-compiler_2.12" )).get
290290 }
291291
292- // All compiler dependencies except the library
292+ // All dotty-doc's and compiler's dependencies except the library.
293+ // (we get the compiler's dependencies because dottydoc depends on the compiler)
293294 val otherDependencies = {
294295 val excluded = Set (" dotty-library" , " dotty-compiler" )
295296 fullClasspath.in(`dotty-doc`, Compile ).value
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import sbt._
44import sbt .Keys ._
55import sbt .librarymanagement .DependencyResolution
66import sbt .internal .inc .ScalaInstance
7- // import sbt.inc.{ ClassfileManager, IncOptions }
87import xsbti .compile ._
98import java .net .URLClassLoader
109import java .util .Optional
@@ -199,6 +198,7 @@ object DottyPlugin extends AutoPlugin {
199198 )
200199 }
201200
201+ /** Fetch artefacts for scalaOrganization.value %% moduleName % scalaVersion.value */
202202 private def fetchArtifactsOf (moduleName : String ) = Def .task {
203203 val dependencyResolution = Keys .dependencyResolution.value
204204 val log = streams.value.log
You can’t perform that action at this time.
0 commit comments