From 5ddb503474c92b75c0863d49aabf2dba8c5c55d0 Mon Sep 17 00:00:00 2001 From: "Aaron S. Hawley" Date: Tue, 31 Jul 2018 15:44:46 -0400 Subject: [PATCH] Remove 0.7.x references --- src/reference/02-DetailTopics/02-Configuration/10-Paths.md | 4 ++-- src/reference/04-Howto/90-Examples/01-Basic-Def-Examples.md | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/reference/02-DetailTopics/02-Configuration/10-Paths.md b/src/reference/02-DetailTopics/02-Configuration/10-Paths.md index 8ab7b0283..2b2865703 100644 --- a/src/reference/02-DetailTopics/02-Configuration/10-Paths.md +++ b/src/reference/02-DetailTopics/02-Configuration/10-Paths.md @@ -20,8 +20,8 @@ but several methods are augmented through implicits: sbt 0.10+ uses [java.io.File](https://docs.oracle.com/javase/8/docs/api/java/io/File.html) -to represent a file instead of the custom `sbt.Path` class that was in -sbt 0.7 and earlier. sbt defines the alias `File` for `java.io.File` so +to represent a file +and defines the type alias `File` for `java.io.File` so that an extra import is not necessary. The `file` method is an alias for the single-argument `File` constructor to simplify constructing a new file from a String: diff --git a/src/reference/04-Howto/90-Examples/01-Basic-Def-Examples.md b/src/reference/04-Howto/90-Examples/01-Basic-Def-Examples.md index 09d04a232..69cf30939 100644 --- a/src/reference/04-Howto/90-Examples/01-Basic-Def-Examples.md +++ b/src/reference/04-Howto/90-Examples/01-Basic-Def-Examples.md @@ -178,8 +178,7 @@ lazy val root = (project in file(".")) artifactClassifier in packageDoc := Some("doc"), // Copy all managed dependencies to /lib_managed/ - // This is essentially a project-local cache and is different - // from the lib_managed/ in sbt 0.7.x. There is only one + // This is essentially a project-local cache. There is only one // lib_managed/ in the build root (not per-project). retrieveManaged := true,