aboutsummaryrefslogtreecommitdiff
path: root/project/Build.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-11-21 14:54:17 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:08 +0100
commitf582ee010a933af991182a32d514bf92e255a07b (patch)
tree21cd4034d1e78c9ae9ec0e0d02d6c4706fcac69e /project/Build.scala
parent9a0c1f75a732d4fb3e419bd8c78bdcac09facd0e (diff)
downloaddotty-f582ee010a933af991182a32d514bf92e255a07b.tar.gz
dotty-f582ee010a933af991182a32d514bf92e255a07b.tar.bz2
dotty-f582ee010a933af991182a32d514bf92e255a07b.zip
Rename sbt bin project to `dotty-bin-tests`
Otherwise this would get picked up by eclipse plugin as a project named `bin`
Diffstat (limited to 'project/Build.scala')
-rw-r--r--project/Build.scala11
1 files changed, 8 insertions, 3 deletions
diff --git a/project/Build.scala b/project/Build.scala
index c46455bf8..d9fd9013e 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -57,7 +57,12 @@ object DottyBuild extends Build {
homepage in Global := Some(url("https://github.com/lampepfl/dotty")),
// scalac options
- scalacOptions in Global ++= Seq("-feature", "-deprecation", "-encoding", "UTF8", "-language:existentials,higherKinds,implicitConversions"),
+ scalacOptions in Global ++= Seq(
+ "-feature",
+ "-deprecation",
+ "-encoding", "UTF8",
+ "-language:existentials,higherKinds,implicitConversions"
+ ),
javacOptions in Global ++= Seq("-Xlint:unchecked", "-Xlint:deprecation")
)
@@ -96,7 +101,7 @@ object DottyBuild extends Build {
";dotty-compiler/lockPartestFile" +
";dotty-compiler/test:test" +
";dotty-compiler/runPartestRunner" +
- ";bin/test" // script tests need to run after the unit tests
+ ";dotty-bin-tests/test" // script tests need to run after the unit tests
) ++
addCommandAlias(
"partest-only",
@@ -343,7 +348,7 @@ object DottyBuild extends Build {
settings(publishing)
/* Contains unit tests for the scripts */
- lazy val bin = project.in(file("bin")).
+ lazy val `dotty-bin-tests` = project.in(file("bin")).
settings(sourceStructure).
settings(
publishArtifact := false,