Fix/function with same name #34

Open
flecomte wants to merge 3 commits from fix/function_with_same_name into master
Showing only changes of commit 034e301073 - Show all commits

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