2017-03-17 19:07:29 +01:00
|
|
|
# Building Eclair
|
|
|
|
|
|
|
|
## Requirements
|
2017-03-26 14:08:04 +02:00
|
|
|
- [Java Development Kit](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) 1.8
|
2017-03-17 19:07:29 +01:00
|
|
|
- [Maven](https://maven.apache.org/download.cgi) 3.3.x
|
|
|
|
- [Inno Setup](http://www.jrsoftware.org/isdl.php) 5.5.9 (optional, if you want to generate the windows installer)
|
|
|
|
|
|
|
|
## Build
|
|
|
|
To build the project, simply run:
|
|
|
|
```shell
|
|
|
|
$ mvn package
|
|
|
|
```
|
2017-08-23 19:28:18 +02:00
|
|
|
To skip the tests, run:
|
2017-03-17 19:07:29 +01:00
|
|
|
```shell
|
|
|
|
$ mvn package -DskipTests
|
|
|
|
```
|
2017-08-23 19:28:18 +02:00
|
|
|
To generate the windows installer along with the build, run the following command:
|
|
|
|
```shell
|
|
|
|
$ mvn package -DskipTests -Pinstaller
|
|
|
|
```
|
|
|
|
The generated installer will be located in `eclair-node-gui/target/jfx/installer`
|