diff --git a/README.md b/README.md index 340e27d..d3dafb4 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,16 @@ # 添加依赖 -```gradle -maven { url 'https://jitpack.io' } +```kts +maven { + name = "rtast-repo" + url = uri("https://repo.rtast.cn/api/v4/projects/3/packages/maven") +} ``` ```gradle dependencies { - implementation 'com.github.DangoTown:RCONLib:$version' + implementation("cn.rtast.RCONLib:$version") } ``` @@ -42,4 +45,4 @@ fun main() { println(response) // or println(response.body) # override toString method to directly print body filed } -``` \ No newline at end of file +```