fix: 修复检查版本更新时的问题

This commit is contained in:
2024-03-18 16:49:54 +08:00
parent aab082500a
commit fb75b4d95f
4 changed files with 60 additions and 57 deletions

View File

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