> ## 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

<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>

    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.
  </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>

***

<Card title="Version Tags" icon="tags" horizontal={true} href="https://github.com/sava-software/sava/tags">
  Latest release tags
</Card>
