mirror of https://github.com/sbt/sbt.git
Merge pull request #184 from alexarchambault/topic/faq-no-verify
Add FAQ entry about manual launching with java
This commit is contained in:
commit
3671056c53
|
|
@ -610,6 +610,14 @@ instead.
|
||||||
|
|
||||||
Run `project/generate-launcher.sh -s` from the root of the coursier sources. That will generate a new (bigger) `coursier` launcher, that needs not to download anything on first launch.
|
Run `project/generate-launcher.sh -s` from the root of the coursier sources. That will generate a new (bigger) `coursier` launcher, that needs not to download anything on first launch.
|
||||||
|
|
||||||
|
#### How can the launcher be run on Windows, or manually with the `java` program?
|
||||||
|
|
||||||
|
Download it from the same link as the command above. Then run from a console, in the directory where the `coursier` launcher is,
|
||||||
|
```
|
||||||
|
> java -noverify -jar coursier
|
||||||
|
```
|
||||||
|
The `-noverify` option seems to be required after the proguarding step of the main JAR of coursier.
|
||||||
|
|
||||||
## Development tips
|
## Development tips
|
||||||
|
|
||||||
#### Working on the plugin module in an IDE
|
#### Working on the plugin module in an IDE
|
||||||
|
|
|
||||||
|
|
@ -634,6 +634,14 @@ instead.
|
||||||
|
|
||||||
Run `project/generate-launcher.sh -s` from the root of the coursier sources. That will generate a new (bigger) `coursier` launcher, that needs not to download anything on first launch.
|
Run `project/generate-launcher.sh -s` from the root of the coursier sources. That will generate a new (bigger) `coursier` launcher, that needs not to download anything on first launch.
|
||||||
|
|
||||||
|
#### How can the launcher be run on Windows, or manually with the `java` program?
|
||||||
|
|
||||||
|
Download it from the same link as the command above. Then run from a console, in the directory where the `coursier` launcher is,
|
||||||
|
```
|
||||||
|
> java -noverify -jar coursier
|
||||||
|
```
|
||||||
|
The `-noverify` option seems to be required after the proguarding step of the main JAR of coursier.
|
||||||
|
|
||||||
## Development tips
|
## Development tips
|
||||||
|
|
||||||
#### Working on the plugin module in an IDE
|
#### Working on the plugin module in an IDE
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue