Skip to content
This repository was archived by the owner on Feb 28, 2021. It is now read-only.

Commit 457cb32

Browse files
committed
README fixes
1 parent 5a368d3 commit 457cb32

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ Add a dependency in your `build.gradle` or `build.gradle.kts`:
1818
repositories {
1919
maven {
2020
name = 'CottonMC'
21-
url = 'http://server.bbkr.space:8081/artifactory/libs-snapshot'
21+
url = 'https://server.bbkr.space:8081/artifactory/libs-release'
2222
}
2323
}
2424
2525
dependencies {
26-
modCompile "io.github.cottonmc:cotton-client-commands:<latest version>-SNAPSHOT"
26+
modImplementation "io.github.cottonmc:cotton-client-commands:<latest version>-SNAPSHOT"
2727
}
2828
```
2929

@@ -32,13 +32,14 @@ dependencies {
3232

3333
```kotlin
3434
repositories {
35-
maven(url = "http://server.bbkr.space:8081/artifactory/libs-snapshot") {
35+
maven {
3636
name = "CottonMC"
37+
url = uri("https://server.bbkr.space:8081/artifactory/libs-release")
3738
}
3839
}
3940

4041
dependencies {
41-
modCompile("io.github.cottonmc:cotton-client-commands:<latest version>-SNAPSHOT")
42+
modImplementation("io.github.cottonmc:cotton-client-commands:<latest version>-SNAPSHOT")
4243
}
4344
```
4445
</details>

0 commit comments

Comments
 (0)