1
0
mirror of https://github.com/ACINQ/eclair.git synced 2024-11-19 18:10:42 +01:00

Mention Docker in our build instructions (fixes #669) (#685)

Mention Docker in our build instructions (fixes #669)
This commit is contained in:
Fabrice Drouin 2018-09-03 18:03:40 +02:00 committed by GitHub
parent 6e0d087c5f
commit 12a80afd03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,23 @@
## Requirements
- [Java Development Kit](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) 1.8u161 or newer
- [Maven](https://maven.apache.org/download.cgi) 3.3.x
- [Maven](https://maven.apache.org/download.cgi) 3.3.x or newer
- [Inno Setup](http://www.jrsoftware.org/isdl.php) 5.5.9 (optional, if you want to generate the windows installer)
- [Docker](https://www.docker.com/) 18.03 or newer (optional) if you want to run all tests
## Build
To build the project, simply run:
```shell
$ mvn install
```
To skip the tests, run:
#### Other build options
If you don't have Docker you can skip tests that depend on it:
```shell
$ mvn install -DexcludedGroups=fr.acinq.eclair.blockchain.electrum.DockerTest
```
To skip all tests, run:
```shell
$ mvn install -DskipTests
```