Update 'README.md'

This commit is contained in:
Sambo Chea 2021-07-28 19:38:07 +07:00
parent 44204f4040
commit 66ed824d94

View File

@ -6,7 +6,7 @@
<repositories>
<repository>
<id>CUBETIQ Directory</id>
<url>https://nexus.kh.cubetiqs.com/repository/maven/</url>
<url>https://m.ctdn.net/maven/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
@ -14,7 +14,7 @@
<repository>
<id>CUBETIQ Directory Snapshots</id>
<url>https://nexus.kh.cubetiqs.com/repository/maven-snapshots/</url>
<url>https://m.ctdn.net/maven-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
@ -26,15 +26,15 @@
- Gradle Groovy DSL (build.gradle)
```groovy
repositories {
maven { url "https://nexus.kh.cubetiqs.com/repository/maven/" }
maven { url "https://nexus.kh.cubetiqs.com/repository/maven-snapshots/" }
maven { url "https://m.ctdn.net/repository/maven/" }
maven { url "https://m.ctdn.net/repository/maven-snapshots/" }
}
```
- Gradle Kotlin DSL (build.gradle.kts)
```kotlin
repositories {
maven("https://nexus.kh.cubetiqs.com/repository/maven/")
maven("https://nexus.kh.cubetiqs.com/repository/maven-snapshots/")
maven("https://m.ctdn.net/repository/maven/")
maven("https://m.ctdn.net/repository/maven-snapshots/")
}
```