Build Configuration
Sava targets Java 25. Ensure you have a compatible JDK installed before adding Sava to your build.
sava-core and sava-rpc; replace VERSION below
with the published version you are using.
- Gradle
- Maven
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add Sava to your Gradle or Maven build.
sava-core and sava-rpc; replace VERSION below
with the published version you are using.
dependencies {
implementation("software.sava:sava-core:$VERSION")
implementation("software.sava:sava-rpc:$VERSION")
}
dependencies {
implementation "software.sava:sava-core:$VERSION"
implementation "software.sava:sava-rpc:$VERSION"
}
<dependencies>
<dependency>
<groupId>software.sava</groupId>
<artifactId>sava-core</artifactId>
<version>VERSION</version>
</dependency>
<dependency>
<groupId>software.sava</groupId>
<artifactId>sava-rpc</artifactId>
<version>VERSION</version>
</dependency>
</dependencies>