Fixes compiler-project/error-in-invalidated

This commit is contained in:
Eugene Yokota 2017-07-16 14:16:08 -04:00
parent fa67110143
commit 12ae6e66ff
2 changed files with 2 additions and 3 deletions

View File

@ -37,8 +37,7 @@ This is the RC-1 release of sbt 1.0.
- sbt 1.0 uses `ConfigRef` in places where `String` was used to reference configuration, such as `update.value.configuration(...)`. Pass in `Configuration`, which implicitly converts to `ConfigRef`. - sbt 1.0 uses `ConfigRef` in places where `String` was used to reference configuration, such as `update.value.configuration(...)`. Pass in `Configuration`, which implicitly converts to `ConfigRef`.
- Changes `sourceArtifactTypes` and `docArtifactTypes` from `Set[String]` to `Seq[String]` settings. - Changes `sourceArtifactTypes` and `docArtifactTypes` from `Set[String]` to `Seq[String]` settings.
- Renames `ivyScala: IvyScala` to `scalaModuleInfo: ScalaModuleInfo`. - Renames `ivyScala: IvyScala` to `scalaModuleInfo: ScalaModuleInfo`.
- Java classes under the `xsbti.compile` package hides the constructor. Use the factory method `xsbti.compile.Foo.of(...)`. - Java classes under the `xsbti.compile` package such as `IncOptions` hides the constructor. Use the factory method `xsbti.compile.Foo.of(...)`.
The Scala Center is working with Lightbend to provide [an automatic migration tool][sbt-migration-rewrites]. The Scala Center is working with Lightbend to provide [an automatic migration tool][sbt-migration-rewrites].

View File

@ -1,5 +1,5 @@
lazy val root = (project in file(".")). lazy val root = (project in file(".")).
settings( settings(
incOptions := xsbti.compile.IncOptionsUtil.defaultIncOptions, incOptions := xsbti.compile.IncOptions.of(),
scalaVersion := "2.11.7" scalaVersion := "2.11.7"
) )