# APIJSONORM [](https://jitpack.io/#Tencent/APIJSON)
[APIJSON](https://github.com/Tencent/APIJSON) ORM Maven, Gradle
Tencent [APIJSON](https://github.com/Tencent/APIJSON) ORM library for remote dependencies with Maven, Gradle, etc.
### Maven
#### 1. pom.xml JitPack
#### 1. Add the JitPack repository to pom.xml
```xml
jitpack.io
https://jitpack.io
```
#### 2. pom.xml APIJSON
#### 2. Add the APIJSON dependency to pom.xml
```xml
com.github.Tencent
APIJSON
LATEST
```
### Gradle
#### 1. build.gradle JitPack
#### 1. Add the JitPack repository in your root build.gradle at the end of repositories
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
#### 2. module ( `app`) build.gradle apijson-orm
#### 2. Add the APIJSON dependency in one of your modules(such as `app`)
```gradle
dependencies {
implementation 'com.github.Tencent:APIJSON:latest'
}
```