mirror of https://github.com/sbt/sbt.git
withNameHashing(true) is removed
This commit is contained in:
parent
e6d11ed83d
commit
bb9db97824
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
incOptions := incOptions.value.withNameHashing(true)
|
||||
|
|
@ -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(".")).
|
||||
|
|
|
|||
|
|
@ -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(".")).
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
incOptions := incOptions.value.withNameHashing(true)
|
||||
|
|
@ -1,3 +1 @@
|
|||
logLevel in compile := Level.Debug
|
||||
|
||||
incOptions := incOptions.value.withNameHashing(true)
|
||||
|
|
|
|||
Loading…
Reference in New Issue