build: 更改项目结构

This commit is contained in:
2023-06-16 19:29:00 +08:00
parent 57357c6ae2
commit 20517e7207
61 changed files with 19 additions and 38 deletions

View File

@@ -16,9 +16,9 @@ repositories {
dependencies {
// 对于 Bukkit 插件
compileOnly "cn.hamster3.mc.plugin:hamster-core-bukkit:1.0.0"
compileOnly "cn.hamster3.mc.plugin:core-bukkit:1.0.0"
// 对于 BungeeCord 插件
compileOnly "cn.hamster3.mc.plugin:hamster-core-bungeecord:1.0.0"
compileOnly "cn.hamster3.mc.plugin:core-bungeecord:1.0.0"
}
```
@@ -40,13 +40,13 @@ dependencies {
<!--对于 Bukkit 插件-->
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>hamster-core-bukkit</artifactId>
<artifactId>core-bukkit</artifactId>
<version>1.0.0</version>
</dependency>
<!--对于 BungeeCord 插件-->
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>hamster-core-bungeecord</artifactId>
<artifactId>core-bungeecord</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>