> ## Documentation Index
> Fetch the complete documentation index at: https://sava.software/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Add Sava to your Gradle or Maven build.

## Build Configuration

<Info>
  Sava targets Java 25. Ensure you have a compatible JDK installed before adding Sava to your build.
</Info>

<Tabs>
  <Tab title="Gradle">
    <CodeGroup>
      ```kotlin build.gradle.kts theme={null}
      dependencies {
        implementation("software.sava:sava-core:$VERSION")
        implementation("software.sava:sava-rpc:$VERSION")
      }
      ```

      ```groovy build.gradle theme={null}
      dependencies {
        implementation "software.sava:sava-core:$VERSION"
        implementation "software.sava:sava-rpc:$VERSION"
      }
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Maven">
    ```xml pom.xml theme={null}
    <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>
    ```
  </Tab>
</Tabs>

<Tip>
  A <a href="https://github.com/sava-software/solana-version-catalog" target="_blank">Gradle Version Catalog and Platform (BOM)</a> is provided for each target version of Java.
</Tip>

<Tip>
  Signed libraries are published to both <a href="https://central.sonatype.com/search?namespace=software.sava" target="_blank">Maven Central</a> and the GitHub Package Repository.
</Tip>

***
