1
mirror of https://github.com/CarmJos/UserPrefix.git synced 2024-09-19 20:15:47 +00:00
UserPrefix/.documentation/README.md
Carm e3c911d375
feat(actions): 支持切换前缀时执行自定义操作 (#32)
* feat(actions): 为单个前缀的选择添加可配置的操作
* feat(actions): 实现在前缀选择时执行操作
2022-09-09 21:28:15 +08:00

2.0 KiB
Raw Blame History

 _    _                   _____              __  _       
| |  | |                 |  __ \            / _|(_)      
| |  | | ___   ___  _ __ | |__) |_ __  ___ | |_  _ __  __
| |  | |/ __| / _ \| '__||  ___/| '__|/ _ \|  _|| |\ \/ /
| |__| |\__ \|  __/| |   | |    | |  |  __/| |  | | >  < 
 \____/ |___/ \___||_|   |_|    |_|   \___||_|  |_|/_/\_\

UserPrefix 帮助介绍文档

插件介绍目录

开发文档

基于 Github Pages 搭建,请访问 JavaDoc

依赖方式

Maven 依赖


<project>
    <repositories>

        <repository>
            <!--采用github依赖库安全稳定但需要配置 (推荐)-->
            <id>UserPrefix</id>
            <name>GitHub Packages</name>
            <url>https://maven.pkg.github.com/CarmJos/UserPrefix</url>
        </repository>

        <repository>
            <!--采用我的私人依赖库,简单方便,但可能因为变故而无法使用-->
            <id>carm-repo</id>
            <name>Carm's Repo</name>
            <url>https://repo.carm.cc/repository/maven-public/</url>
        </repository>

    </repositories>

    <dependencies>

        <dependency>
            <groupId>cc.carm.plugin</groupId>
            <artifactId>userprefix</artifactId>
            <version>[LATEST RELEASE]</version>
            <scope>provided</scope>
        </dependency>

    </dependencies>
</project>

Gradle 依赖

repositories {
    // 采用github依赖库安全稳定但需要配置 (推荐)
    maven { url 'https://maven.pkg.github.com/CarmJos/UserPrefix' }

    // 采用我的私人依赖库,简单方便,但可能因为变故而无法使用
    maven { url 'https://repo.carm.cc/repository/maven-public/' }
}

dependencies {
    compileOnly "cc.carm.plugin:userprefix:[LATEST RELEASE]"
}