@@ -6,13 +6,13 @@ object DottyBuild extends Build {
6
6
7
7
val defaults = Defaults .defaultSettings ++ Seq (
8
8
// set sources to src/, tests to test/ and resources to resources/
9
- scalaSource in Compile << = baseDirectory(_ / " src" ) ,
10
- javaSource in Compile << = baseDirectory(_ / " src" ) ,
11
- scalaSource in Test << = baseDirectory(_ / " test" ) ,
12
- javaSource in Test << = baseDirectory(_ / " test" ) ,
13
- resourceDirectory in Compile << = baseDirectory(_ / " resources" ) ,
14
- unmanagedSourceDirectories in Compile <<= ( scalaSource in Compile )( Seq (_) ),
15
- unmanagedSourceDirectories in Test <<= ( scalaSource in Test )( Seq (_) ),
9
+ scalaSource in Compile : = baseDirectory.value / " src" ,
10
+ javaSource in Compile : = baseDirectory.value / " src" ,
11
+ scalaSource in Test : = baseDirectory.value / " test" ,
12
+ javaSource in Test : = baseDirectory.value / " test" ,
13
+ resourceDirectory in Compile : = baseDirectory.value / " resources" ,
14
+ unmanagedSourceDirectories in Compile := Seq (( scalaSource in Compile ).value ),
15
+ unmanagedSourceDirectories in Test := Seq (( scalaSource in Test ).value ),
16
16
17
17
// include sources in eclipse (downloads source code for all dependencies)
18
18
// http://stackoverflow.com/questions/10472840/how-to-attach-sources-to-sbt-managed-dependencies-in-scala-ide#answer-11683728
@@ -43,9 +43,9 @@ object DottyBuild extends Build {
43
43
path = file.getAbsolutePath
44
44
} yield " -Xbootclasspath/p:" + path
45
45
// dotty itself needs to be in the bootclasspath
46
- val self = " -Xbootclasspath/a:" + bin
47
- System .err.println(" PATH : " + path )
48
- self :: path.toList
46
+ val fullpath = ( " -Xbootclasspath/a:" + bin) :: path.toList
47
+ // System.err.println("BOOTPATH : " + fullpath )
48
+ fullpath
49
49
}
50
50
)
51
51
0 commit comments