From 034e301073b0779324ee09666fde0e00ca04f107 Mon Sep 17 00:00:00 2001 From: Fabrice Lecomte Date: Mon, 14 Nov 2022 13:06:57 +0100 Subject: [PATCH] update install doc --- docs/installation.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index 9c2d9a5..aad5ed6 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -3,6 +3,20 @@ ## 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:+") }