# apijson-framework
**Repository Path**: gx0803/apijson-framework
## Basic Information
- **Project Name**: apijson-framework
- **Description**: 腾讯 APIJSON 服务端框架,可通过 Maven, Gradle 等远程依赖。Tencent APIJSON Server Framework for remote dependencies with Maven, Gradle, etc.
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-05-14
- **Last Updated**: 2022-06-02
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# apijson-framework [](https://jitpack.io/#APIJSON/apijson-framework)
腾讯 [APIJSON](https://github.com/Tencent/APIJSON) 服务端框架,可通过 Maven, Gradle 等远程依赖。
Tencent [APIJSON](https://github.com/Tencent/APIJSON) Server Framework 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-orm 依赖
#### 2. Add the apijson-orm dependency to pom.xml
```xml
com.github.APIJSON
apijson-framework
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-orm dependency in one of your modules(such as `app`)
```gradle
dependencies {
implementation 'com.github.APIJSON:apijson-framework:latest'
}
```