Skip to content

Commit

Permalink
Rename sbt bin project to dotty-bin-tests
Browse files Browse the repository at this point in the history
Otherwise this would get picked up by eclipse plugin as a project named
`bin`
  • Loading branch information
felixmulder authored and smarter committed Nov 22, 2016
1 parent 9a0c1f7 commit f582ee0
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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")
)
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit f582ee0

Please sign in to comment.