This is a Json object generator used in Airbyte. It is based on the jsongenerator authored by Jim Blackler.
This library is available on JitPack. Check here for details.
- Add the JitPack repository to the root
build.gradle
:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
- Add the dependency
dependencies {
implementation 'com.github.airbytehq:jsongenerator:<version>'
}
To publish a new version, tag the desired commit with a new version label.
VERSION=<new-version>
git tag -a "${VERSION}" -m "Version ${VERSION}"
git push origin "${VERSION}"
- Add a
DefaultConfig
implementation of theConfiguration
interface. - Generate valid
date
anddate-time
fields more efficiently. - Set min object properties to
1
. - Set min array items to
1
.
The original jsongenerator is licensed under Apache 2.0.
Version | Description |
---|---|
1.0.1 | Publish to JitPack. |