Skip to content

Commit e8c1d27

Browse files
AUTO: Docs repo sync - ScalarDB (#380)
* AUTO: Sync ScalarDB docs in English to docs site repo * Delete easy-to-start.mdx * Delete getting-started-export.mdx * Delete getting-started-import.mdx --------- Co-authored-by: josh-wong <joshua.wong@scalar-labs.com> Co-authored-by: josh-wong <23216828+josh-wong@users.noreply.github.com>
1 parent f09061c commit e8c1d27

File tree

115 files changed

+23900
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+23900
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Add ScalarDB to Your Build
2+
3+
import Tabs from '@theme/Tabs';
4+
import TabItem from '@theme/TabItem';
5+
6+
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.
7+
8+
## Configure your application based on your build tool
9+
10+
Select your build tool, and follow the instructions to add the build dependency for ScalarDB to your application.
11+
12+
<Tabs groupId="build_tools" queryString>
13+
<TabItem value="Gradle" label="Gradle">
14+
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:
15+
16+
```gradle
17+
dependencies {
18+
implementation 'com.scalar-labs:scalardb:<VERSION>'
19+
}
20+
```
21+
</TabItem>
22+
<TabItem value="Maven" label="Maven" default>
23+
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:
24+
25+
```xml
26+
<dependency>
27+
<groupId>com.scalar-labs</groupId>
28+
<artifactId>scalardb</artifactId>
29+
<version><VERSION></version>
30+
</dependency>
31+
```
32+
</TabItem>
33+
</Tabs>

0 commit comments

Comments
 (0)