2020-11-22 03:06:44 +08:00
|
|
|
# APIJSONORM [![](https://jitpack.io/v/Tencent/APIJSON.svg)](https://jitpack.io/#Tencent/APIJSON)
|
|
|
|
腾讯 [APIJSON](https://github.com/Tencent/APIJSON) ORM 库,可通过 Maven, Gradle 等远程依赖。<br />
|
|
|
|
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
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
```
|
|
|
|
<br />
|
|
|
|
|
|
|
|
#### 2. 在 pom.xml 中添加 APIJSON 依赖
|
|
|
|
#### 2. Add the APIJSON dependency to pom.xml
|
|
|
|
```xml
|
|
|
|
<dependency>
|
2020-11-22 03:08:19 +08:00
|
|
|
<groupId>com.github.Tencent</groupId>
|
2020-11-22 03:06:44 +08:00
|
|
|
<artifactId>APIJSON</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</dependency>
|
|
|
|
```
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
### 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' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
<br />
|
|
|
|
|
|
|
|
#### 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'
|
|
|
|
}
|
|
|
|
```
|