1
0
mirror of https://github.com/ACINQ/eclair.git synced 2025-01-19 05:33:59 +01:00

Added the maven command to build eclair-node only (#250)

Also favouring `install` instead of `package`
This commit is contained in:
Dominique 2017-12-01 13:56:01 +01:00 committed by GitHub
parent 84a9d73413
commit b2c684a0da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,14 +8,18 @@
## Build
To build the project, simply run:
```shell
$ mvn package
$ mvn install
```
To skip the tests, run:
```shell
$ mvn package -DskipTests
$ mvn install -DskipTests
```
To only build the `eclair-node` module
```shell
$ mvn install -pl eclair-node -am -DskipTests
```
To generate the windows installer along with the build, run the following command:
```shell
$ mvn package -DskipTests -Pinstaller
$ mvn install -DskipTests -Pinstaller
```
The generated installer will be located in `eclair-node-gui/target/jfx/installer`