- The latest generally available JDK. This project will continue to move to the latest and will not maintain versions released against previous JDK's.
Create a GitHub user access token with read access to GitHub Packages.
Then add the following to your Gradle build script.
repositories {
maven {
url = "https://maven.pkg.github.com/sava-software/sava"
credentials {
username = GITHUB_USERNAME
password = GITHUB_PERSONAL_ACCESS_TOKEN
}
}
maven {
url = "https://maven.pkg.github.com/sava-software/solana-programs"
}
}
dependencies {
implementation "software.sava:sava-core:$VERSION"
implementation "software.sava:sava-rpc:$VERSION"
implementation "software.sava:solana-programs:$VERSION"
}
Unit tests are needed and welcomed. Otherwise, please open an issue or send an email before working on a pull request.