mirror of https://github.com/sbt/sbt.git
Change in build definition
Hopefully friendlier to SBT on Travis (why tf is it perfectly fine locally then??? Same JDK, same SBT version, ...)
This commit is contained in:
parent
dc6e1c368c
commit
1743bbbf1d
|
|
@ -151,4 +151,14 @@ object CoursierBuild extends Build {
|
|||
)
|
||||
.enablePlugins(ScalaJSPlugin)
|
||||
|
||||
lazy val root = Project(id = "root", base = file("."))
|
||||
.aggregate(coreJvm, coreJs, files, cli, web)
|
||||
.settings(commonSettings: _*)
|
||||
.settings(
|
||||
(unmanagedSourceDirectories in Compile) := Nil,
|
||||
(unmanagedSourceDirectories in Test) := Nil,
|
||||
publish := (),
|
||||
publishLocal := ()
|
||||
)
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue