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:
Alexandre Archambault 2015-06-26 02:44:25 +02:00
parent dc6e1c368c
commit 1743bbbf1d
1 changed files with 10 additions and 0 deletions

View File

@ -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 := ()
)
}