23 lines
373 B
Markdown
23 lines
373 B
Markdown
# Installation
|
|
|
|
## Gradle
|
|
```kotlin
|
|
// 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 {
|
|
implementation("com.github.flecomte:postgres-json:+")
|
|
}
|
|
``` |