From f582ee010a933af991182a32d514bf92e255a07b Mon Sep 17 00:00:00 2001 From: Felix Mulder Date: Mon, 21 Nov 2016 14:54:17 +0100 Subject: Rename sbt bin project to `dotty-bin-tests` Otherwise this would get picked up by eclipse plugin as a project named `bin` --- project/Build.scala | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'project/Build.scala') 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, -- cgit v1.2.3