Merge pull request #4198 from eed3si9n/wip/offline-props

-Dsbt.offline sets offline setting
This commit is contained in:
eugene yokota 2018-06-14 01:09:32 -04:00 committed by GitHub
commit 9b8648519f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1861,7 +1861,7 @@ object Classpaths {
licenses :== Nil,
developers :== Nil,
scmInfo :== None,
offline :== false,
offline :== java.lang.Boolean.getBoolean("sbt.offline"),
defaultConfiguration :== Some(Configurations.Compile),
dependencyOverrides :== Vector.empty,
libraryDependencies :== Nil,

2
notes/1.2.0/offline.md Normal file
View File

@ -0,0 +1,2 @@
- `-Dsbt.offline=true` now can set offline mode.