Skip to content

Commit

Permalink
Add docs for ScalarDB 3.13 (#133)
Browse files Browse the repository at this point in the history
* Add 3.13 docs

* Update version-3.12-sidebars.json
  • Loading branch information
josh-wong authored Jul 23, 2024
1 parent 6943c03 commit 8a0b5cd
Show file tree
Hide file tree
Showing 56 changed files with 11,054 additions and 2 deletions.
33 changes: 33 additions & 0 deletions docs/add-scalardb-to-your-build.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Add ScalarDB to Your Build

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

The ScalarDB library is available on the [Maven Central Repository](https://mvnrepository.com/artifact/com.scalar-labs/scalardb). You can add the library as a build dependency to your application by using Gradle or Maven.

## Configure your application based on your build tool

Select your build tool, and follow the instructions to add the build dependency for ScalarDB to your application.

<Tabs groupId="build_tools" queryString>
<TabItem value="Gradle" label="Gradle">
To add the build dependency for ScalarDB by using Gradle, add the following to `build.gradle` in your application, replacing `<VERSION>` with the version of ScalarDB that you want to use:

```gradle
dependencies {
implementation 'com.scalar-labs:scalardb:<VERSION>'
}
```
</TabItem>
<TabItem value="Maven" label="Maven" default>
To add the build dependency for ScalarDB by using Maven, add the following to `pom.xml` in your application, replacing `<VERSION>` with the version of ScalarDB that you want to use:

```xml
<dependency>
<groupId>com.scalar-labs</groupId>
<artifactId>scalardb</artifactId>
<version><VERSION></version>
</dependency>
```
</TabItem>
</Tabs>
Loading

0 comments on commit 8a0b5cd

Please sign in to comment.