generated from Consensys/doc.goquorum
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add build guide * minor fix * address reviewer feedback * update version requirements * ./gradlew installDist -> ./gradlew build * updating submodule to latest * Fix build verification steps Co-authored-by: Nicolas MASSART <[email protected]> Co-authored-by: chris <[email protected]>
- Loading branch information
1 parent
f329033
commit 98c66a9
Showing
3 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
Submodule common
updated
from 6fcdc9 to 7ace31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
description: Build Tessera from source | ||
--- | ||
|
||
# Build from source | ||
|
||
## Prerequisites | ||
|
||
- [Java JDK](https://www.oracle.com/java/technologies/javase-downloads.html) | ||
|
||
!!! important | ||
|
||
Tessera version 0.10.3 or later requires Java version 11, and Tessera version 0.10.2 or earlier requires Java version 8 or 11. | ||
|
||
- [libsodium](https://download.libsodium.org/doc/installation/) | ||
|
||
## Clone the Tessera repository | ||
|
||
Clone the `ConsenSys/tessera` repository: | ||
|
||
``` bash | ||
git clone https://github.com/ConsenSys/tessera.git | ||
``` | ||
|
||
### Build Tessera | ||
|
||
After cloning, go to the `tessera` directory. | ||
|
||
Build Tessera with the Gradle wrapper `gradlew`, omitting tests as follows: | ||
|
||
```bash | ||
./gradlew build -x test | ||
``` | ||
|
||
Verify the installation with the `help` command: | ||
|
||
```bash | ||
java -jar tessera-dist/tessera-app/build/libs/tessera-app-<version>-app.jar help | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters