mirror of https://github.com/sbt/sbt.git
Mention sandboxing in the FAQ
Fixes https://github.com/alexarchambault/coursier/issues/160
This commit is contained in:
parent
af5275c014
commit
66b20410df
11
README.md
11
README.md
|
|
@ -618,6 +618,17 @@ Download it from the same link as the command above. Then run from a console, in
|
|||
```
|
||||
The `-noverify` option seems to be required after the proguarding step of the main JAR of coursier.
|
||||
|
||||
#### How to enable sandboxing?
|
||||
|
||||
Set the `COURSIER_CACHE` prior to running `coursier` or SBT, like
|
||||
```
|
||||
$ COURSIER_CACHE=$(pwd)/.coursier-cache coursier
|
||||
```
|
||||
or
|
||||
```
|
||||
$ COURSIER_CACHE=$(pwd)/.coursier-cache sbt
|
||||
```
|
||||
|
||||
## Development tips
|
||||
|
||||
#### Working on the plugin module in an IDE
|
||||
|
|
|
|||
|
|
@ -642,6 +642,17 @@ Download it from the same link as the command above. Then run from a console, in
|
|||
```
|
||||
The `-noverify` option seems to be required after the proguarding step of the main JAR of coursier.
|
||||
|
||||
#### How to enable sandboxing?
|
||||
|
||||
Set the `COURSIER_CACHE` prior to running `coursier` or SBT, like
|
||||
```
|
||||
$ COURSIER_CACHE=$(pwd)/.coursier-cache coursier
|
||||
```
|
||||
or
|
||||
```
|
||||
$ COURSIER_CACHE=$(pwd)/.coursier-cache sbt
|
||||
```
|
||||
|
||||
## Development tips
|
||||
|
||||
#### Working on the plugin module in an IDE
|
||||
|
|
|
|||
Loading…
Reference in New Issue