Files
postgres-json/docs/installation.md
2022-11-14 13:06:57 +01:00

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:+")
}
```