APIJSON/APIJSONORM
TommyLemon 3a89b6043f Merge branch 'master' of https://github.com/Tencent/APIJSON
* '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
  ...
2021-09-19 22:43:01 +08:00
..
src/main Merge branch 'master' of https://github.com/Tencent/APIJSON 2021-09-19 22:43:01 +08:00
.gitignore Demo 工程迁移到 APIJSON-Demo 项目;APIJSONORM 和 APIJSONFramework 迁移到最外层;调整文档中的链接 2020-09-15 22:12:10 +08:00
pom.xml 升级版本号为 4.7.2 2021-08-01 01:47:10 +08:00
README.md Update README.md 2020-11-22 03:08:19 +08:00

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'
	}