From ebea7c6c9e2e0a5b656ceda3fd6996d24ead167e Mon Sep 17 00:00:00 2001 From: Henri Gourvest Date: Tue, 21 May 2024 11:12:00 +0200 Subject: [PATCH] Update dependencies in README.md Maven central repository has been added to the dependency management sections in the README.md file. Additionally, the FirebirdClient and FirebirdClient-ext versions have been updated from 1.0 to 1.0-RC. --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index be0ba6c..f5b8666 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,16 @@ The project is organized into three modules, ### JVM & Kotlin Native ``` kotlin +repositories { + mavenCentral() +} + dependencies { // the main dependency - implementation("com.progdigy:FirebirdClient:1.0") + implementation("com.progdigy:FirebirdClient:1.0-RC") // or the extended dependency - implementation("com.progdigy:FirebirdClient-ext:1.0") + implementation("com.progdigy:FirebirdClient-ext:1.0-RC") } ``` @@ -45,9 +49,13 @@ you must be logged in to download the file. Then declare these dependencies in your gradle file ``` kotlin +repositories { + mavenCentral() +} + dependencies { implementation(files("libs/Firebird-5.0.0.xxxx-x-android-embedded.aar")) - implementation("com.progdigy:FirebirdClient:1.0") + implementation("com.progdigy:FirebirdClient:1.0-RC") } ```