Add FAQ entry about manual launching with java

Fixes https://github.com/alexarchambault/coursier/issues/176
This commit is contained in:
Alexandre Archambault 2016-02-28 17:10:51 +01:00
parent 506cb53f3f
commit 8965df939b
2 changed files with 16 additions and 0 deletions

View File

@ -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.
#### 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
#### Working on the plugin module in an IDE

View File

@ -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.
#### 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
#### Working on the plugin module in an IDE