Skip to content

🍀 旨在让创建 Minecraft 插件更简单的支持库,易于使用。

License

Notifications You must be signed in to change notification settings

WindLeaf233/EasyLib

Repository files navigation

EasyLib

Release Build Commit

Size License

🍀 旨在让创建 Minecraft 插件更简单的支持库,易于使用。


使用方法

版本号可为 master-SNAPSHOT 表示最新构建版

Gradle

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.WindLeaf233:EasyLib:1.0.3'
}

Maven

<repositories>
    <repository>
        <id>jitpack</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.github.WindLeaf233</groupId>
        <artifactId>EasyLib</artifactId>
        <version>1.0.3</version>
    </dependency>
</dependencies>

TODOs

  • 添加国际化
  • 多个 EasyLibPlugin 实例兼容性
  • 优化更新时插件名提及
  • 修复打包问题
  • 修改为 Paper/Spigot 插件型,便于安装和导入