Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 510 Bytes

File metadata and controls

20 lines (14 loc) · 510 Bytes

Building the YDB Java SDK

Requirements

  • Java 8 or newer
  • Maven 3.0.0 or newer

Installing in local repo

You can install the SDK artifacts in your local maven cache by running the following command in project folder. During the build process, the working directory will be cleared, tests will be run, artifacts will be built and copied to the local repository.

./mvnw clean install

If you don't need the test executions, just disable them

./mvnw clean install -DskipTests=true