Skip to content

Commit 845f67c

Browse files
committed
📝 fix readme
1 parent 7525e85 commit 845f67c

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

readme.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,29 +37,33 @@ To add the Currencies API to your project using Maven, add the following to your
3737
```xml
3838
<repositories>
3939
<repository>
40-
<id>jitpack.io</id>
41-
<url>https://jitpack.io</url>
40+
<id>groupez-releases</id>
41+
<name>GroupeZ Repository</name>
42+
<url>https://repo.groupez.dev/releases</url>
4243
</repository>
4344
</repositories>
4445

4546
<dependency>
46-
<groupId>com.github.Traqueur-dev</groupId>
47-
<artifactId>CurrenciesAPI</artifactId>
48-
<version>1.0.5</version>
47+
<groupId>fr.traqueur.currencies</groupId>
48+
<artifactId>currenciesapi</artifactId>
49+
<version>1.0.11</version>
4950
</dependency>
5051
```
5152

5253
### Gradle
5354

5455
To add the Currencies API to your project using Gradle, add the following to your `build.gradle`:
5556

56-
```gradle
57+
```kotlin
5758
repositories {
58-
maven { url 'https://jitpack.io' }
59+
maven {
60+
name = "groupezReleases"
61+
url = uri("https://repo.groupez.dev/releases")
62+
}
5963
}
6064

6165
dependencies {
62-
implementation 'com.github.Traqueur-dev:CurrenciesAPI:1.0.5'
66+
implementation("fr.traqueur.currencies:currenciesapi:1.0.11")
6367
}
6468
```
6569

0 commit comments

Comments
 (0)