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>)`.
|
- Renames early command feature from `--<command>` to `early(<command>)`.
|
||||||
- Log options `-error`, `-warn`, `-info`, `-debug` are added as shorthand for `"early(error)"` etc.
|
- 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.
|
- `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",
|
scalaVersion := "2.11.4",
|
||||||
resolvers += Resolver.sonatypeRepo("snapshots"),
|
resolvers += Resolver.sonatypeRepo("snapshots"),
|
||||||
resolvers += Resolver.sonatypeRepo("releases"),
|
resolvers += Resolver.sonatypeRepo("releases"),
|
||||||
addCompilerPlugin("org.scalamacros" % "paradise" % paradiseVersion cross CrossVersion.full),
|
addCompilerPlugin("org.scalamacros" % "paradise" % paradiseVersion cross CrossVersion.full)
|
||||||
incOptions := incOptions.value.withNameHashing(true)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val root = (project in file(".")).
|
lazy val root = (project in file(".")).
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
val defaultSettings = Seq(
|
val defaultSettings = Seq(
|
||||||
scalaVersion := "2.10.6",
|
scalaVersion := "2.10.6",
|
||||||
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value //,
|
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value
|
||||||
//incOptions := incOptions.value.withNameHashing(true)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val root = (project in file(".")).
|
lazy val root = (project in file(".")).
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
incOptions := incOptions.value.withNameHashing(true)
|
|
||||||
|
|
@ -1,3 +1 @@
|
||||||
logLevel in compile := Level.Debug
|
logLevel in compile := Level.Debug
|
||||||
|
|
||||||
incOptions := incOptions.value.withNameHashing(true)
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue