Detail removal of commonly used deprecations in MIGRATION.md

This commit is contained in:
Dale Wijnand 2017-04-13 10:30:30 +01:00
parent 3f590d8e13
commit c4c405cbb2
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 5 additions and 0 deletions

View File

@ -17,3 +17,8 @@ Migration notes
- `TestResult.Value` is now `TestResult`.
- the scripted plugin is cross-versioned now, so you must use %% when depending on it
- Removed the methods settingsSets from Project (along with add/setSbtFiles)
- Dropped deprecated InputTask apply method and inputTask DSL method - replace with `Def.inputTask` & `Def.spaceDelimited().parsed`
- Dropped deprecated ProjectReference implicit lifts - replace with `RootProject(<uri>)`, `RootProject(<file>)` or `LocalProject(<string>)`
- Dropped deprecated seq DSL method - replace with `Seq` or just enumerate without wrapping
- Dropped deprecated File/Seq[File] setting enrichments - replace with `.value` and `Def.setting`
- Dropped deprecated SubProcess apply overload - replace with `SubProcess(ForkOptions(runJVMOptions = ..))`