Skip to content

Commit

Permalink
Update dependencies in README.md
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
hgourvest committed May 21, 2024
1 parent e042a1a commit ebea7c6
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand All @@ -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")

}
```
Expand Down

0 comments on commit ebea7c6

Please sign in to comment.