mirror of https://github.com/sbt/sbt.git
Merge pull request #4198 from eed3si9n/wip/offline-props
-Dsbt.offline sets offline setting
This commit is contained in:
commit
9b8648519f
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
- `-Dsbt.offline=true` now can set offline mode.
|
||||
|
||||
Loading…
Reference in New Issue