feat: 1.3.3 稳定版

This commit is contained in:
2024-03-24 13:36:27 +08:00
parent 86bd28e134
commit e2a8cc236e
4 changed files with 7 additions and 55 deletions

View File

@@ -26,9 +26,9 @@ repositories {
dependencies {
// 对于 Bukkit 插件
compileOnly("cn.hamster3.mc.plugin:core-bukkit:1.3.3-SNAPSHOT")
compileOnly("cn.hamster3.mc.plugin:core-bukkit:1.3.3")
// 对于 BungeeCord 插件
compileOnly("cn.hamster3.mc.plugin:core-bungee:1.3.3-SNAPSHOT")
compileOnly("cn.hamster3.mc.plugin:core-bungee:1.3.3")
}
```
@@ -54,13 +54,13 @@ dependencies {
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>core-bukkit</artifactId>
<version>1.3.3-SNAPSHOT</version>
<version>1.3.3</version>
</dependency>
<!--对于 BungeeCord 插件-->
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>core-bungee</artifactId>
<version>1.3.3-SNAPSHOT</version>
<version>1.3.3</version>
</dependency>
</dependencies>
</project>