Skip to content

Commit

Permalink
Merge pull request #712 from ashawley/drop-0.7.x
Browse files Browse the repository at this point in the history
Remove 0.7.x references
  • Loading branch information
eed3si9n authored Aug 1, 2018
2 parents f572d16 + 5ddb503 commit bbb68a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/reference/02-DetailTopics/02-Configuration/10-Paths.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 1 addition & 2 deletions src/reference/04-Howto/90-Examples/01-Basic-Def-Examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,7 @@ lazy val root = (project in file("."))
artifactClassifier in packageDoc := Some("doc"),

// Copy all managed dependencies to <build-root>/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,

Expand Down

0 comments on commit bbb68a6

Please sign in to comment.