3a89b6043f
* 'master' of https://github.com/Tencent/APIJSON: (44 commits) 生态周边项目新增 apijson-practice,感谢贡献 1.根据方法不同拼接聚合语句 2.修改Oracle分组统计语句 update a problem about oracle add delete and update Update AbstractObjectParser.java Modified:修复put请求key的bug 使用登记 新增 腾讯科技有限公司 用户登记新增 腾讯科技有限公司 用户登记新增 腾讯科技有限公司 Update README.md commit test 新增包括 1 个腾讯工程师在内的 8 个贡献者,感谢大家的贡献 新增包括 1 个腾讯工程师在内的 8 个贡献者,感谢大家的贡献 新增包括 1 个腾讯工程师在内的 8 个贡献者,感谢大家的贡献 updated users(Tencent) Update users(Tencent) and contributors(from Tencent, Zhihu, YTO Express) update users(companies) and contributors 简介新增 "零代码实时满足千变万化的各种新增和变更需求" Update CONTRIBUTING.md Update CONTRIBUTING.md ... |
||
---|---|---|
.. | ||
src/main | ||
.gitignore | ||
pom.xml | ||
README.md |
APIJSONORM
腾讯 APIJSON ORM 库,可通过 Maven, Gradle 等远程依赖。
Tencent APIJSON ORM library for remote dependencies with Maven, Gradle, etc.
Maven
1. 在 pom.xml 中添加 JitPack 仓库
1. Add the JitPack repository to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2. 在 pom.xml 中添加 APIJSON 依赖
2. Add the APIJSON dependency to pom.xml
<dependency>
<groupId>com.github.Tencent</groupId>
<artifactId>APIJSON</artifactId>
<version>LATEST</version>
</dependency>
Gradle
1. 在项目根目录 build.gradle 中最后添加 JitPack 仓库
1. Add the JitPack repository in your root build.gradle at the end of repositories
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
)
dependencies {
implementation 'com.github.Tencent:APIJSON:latest'
}