Skip to content

Latest commit

 

History

History
57 lines (40 loc) · 1.4 KB

build.md

File metadata and controls

57 lines (40 loc) · 1.4 KB

Building Bisq

  1. Clone Bisq

    git clone https://github.com/bisq-network/bisq
    # if you intend to do testing on the latest release, you can clone the respective branch selectively, without downloading the whole repository
    # for the 1.9.3 release, you would do it like this:
    git clone --branch release/v1.9.3 https://github.com/bisq-network/bisq
    cd bisq
  2. Build Bisq

    On macOS and Linux, execute:

    ./gradlew build

    On Windows:

    gradlew.bat build

    If you prefer to skip tests to speed up the building process, just append -x test to the previous commands.

Important notes

  1. You do not need to install Gradle to build Bisq. The gradlew shell script will install it for you, if necessary.

  2. Bisq currently works with JDK 11 and JDK 15. You can find out which version you have with:

    javac -version

If you do not have JDK 11 installed, check out scripts in the scripts directory or download it manually from https://jdk.java.net/archive/.

Running Bisq

Once Bisq is installed, its executables will be available in the root project directory. Run Bisq Desktop as follows:

On macOS and Linux:

./bisq-desktop

On Windows:

bisq-desktop.bat

See also