update install doc

This commit is contained in:
2022-11-14 13:06:57 +01:00
parent 9d28ea6f0d
commit 034e301073

View File

@@ -3,6 +3,20 @@
## Gradle ## Gradle
```kotlin ```kotlin
// build.gradle.kts // build.gradle.kts
buildscript {
repositories {
maven { url = uri("https://jitpack.io") }
}
dependencies {
classpath("com.github.flecomte:postgres-json:+")
}
}
repositories {
maven { url = uri("https://jitpack.io") }
}
dependencies { dependencies {
implementation("com.github.flecomte:postgres-json:+") implementation("com.github.flecomte:postgres-json:+")
} }