Merge pull request #184 from alexarchambault/topic/faq-no-verify

Add FAQ entry about manual launching with java
This commit is contained in:
Alexandre Archambault 2016-02-28 19:33:53 +01:00
commit 3671056c53
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