From 62c8350b8b1551f9839ca37d3c2051f1491bdb28 Mon Sep 17 00:00:00 2001 From: CarmJos Date: Wed, 5 Jan 2022 05:11:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BE=9D=E8=B5=96=E6=96=B9?= =?UTF-8?q?=E5=BC=8F=E4=BB=8B=E7=BB=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .documentation/README.md | 65 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 60 insertions(+), 5 deletions(-) diff --git a/.documentation/README.md b/.documentation/README.md index e87a752..6538b81 100644 --- a/.documentation/README.md +++ b/.documentation/README.md @@ -11,10 +11,6 @@ # UltraDepository 帮助介绍文档 -## [开发文档](JAVADOC-README.md) - -基于 [Github Pages](https://pages.github.com/) 搭建,请访问 [JavaDoc](https://carmjos.github.io/UltraDepository) 。 - ## 插件介绍目录 - 使用示例 @@ -24,4 +20,63 @@ - [JSON格式](../.examples/userdata/uuid.json) - [MySQL格式](../.examples/userdata/database.sql) - [开发](develop) - - [自定义存储源](develop/use-custome-storage.md) \ No newline at end of file + - [自定义存储源](develop/use-custome-storage.md) + + +## [开发文档](JAVADOC-README.md) + +基于 [Github Pages](https://pages.github.com/) 搭建,请访问 [JavaDoc](https://carmjos.github.io/UltraDepository) 。 + +## 依赖方式 + +### Maven 依赖 + +```xml + + + + + + + UltraDepository + GitHub Packages + https://maven.pkg.github.com/CarmJos/UltraDepository + + + + + carm-repo + Carm's Repo + https://repo.carm.cc/repository/maven-public/ + + + + + + + + cc.carm.plugin + ultradepository + [LATEST RELEASE] + provided + + + + +``` + +### Gradle 依赖 + +```groovy +repositories { + // 采用github依赖库,安全稳定,但需要配置 (推荐) + maven { url 'https://maven.pkg.github.com/CarmJos/EasyPlugin' } + + // 采用我的私人依赖库,简单方便,但可能因为变故而无法使用 + maven { url 'https://repo.carm.cc/repository/maven-public/' } +} + +dependencies { + compileOnly "cc.carm.plugin:ultradepository:[LATEST RELEASE]" +} +``` \ No newline at end of file