withNameHashing(true) is removed

This commit is contained in:
Eugene Yokota 2017-03-23 15:59:09 -04:00
parent e6d11ed83d
commit bb9db97824
6 changed files with 3 additions and 8 deletions

View File

@ -13,3 +13,4 @@ Migration notes
- Renames early command feature from `--<command>` to `early(<command>)`.
- Log options `-error`, `-warn`, `-info`, `-debug` are added as shorthand for `"early(error)"` etc.
- `sbt.Process` and `sbt.ProcessExtra` are gone. Use `scala.sys.process` instead.
- `incOptions.value.withNameHashing(...)` option is removed.

View File

@ -1 +0,0 @@
incOptions := incOptions.value.withNameHashing(true)

View File

@ -5,8 +5,7 @@ val commonSettings = Seq(
scalaVersion := "2.11.4",
resolvers += Resolver.sonatypeRepo("snapshots"),
resolvers += Resolver.sonatypeRepo("releases"),
addCompilerPlugin("org.scalamacros" % "paradise" % paradiseVersion cross CrossVersion.full),
incOptions := incOptions.value.withNameHashing(true)
addCompilerPlugin("org.scalamacros" % "paradise" % paradiseVersion cross CrossVersion.full)
)
lazy val root = (project in file(".")).

View File

@ -1,7 +1,6 @@
val defaultSettings = Seq(
scalaVersion := "2.10.6",
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value //,
//incOptions := incOptions.value.withNameHashing(true)
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value
)
lazy val root = (project in file(".")).

View File

@ -1 +0,0 @@
incOptions := incOptions.value.withNameHashing(true)

View File

@ -1,3 +1 @@
logLevel in compile := Level.Debug
incOptions := incOptions.value.withNameHashing(true)