feat: 使用 guava 的 EventBus

This commit is contained in:
2023-11-11 18:39:20 +08:00
parent a5c2eec5e5
commit d70841167f
6 changed files with 119 additions and 93 deletions

View File

@@ -5,7 +5,7 @@ plugins {
}
group = "cn.hamster3.mc.plugin"
version = "1.1.0-SNAPSHOT"
version = "1.2.0-DEV"
subprojects {
apply {
@@ -64,10 +64,7 @@ subprojects {
}
repositories {
maven {
val releasesRepoUrl = uri("https://maven.airgame.net/maven-releases/")
val snapshotsRepoUrl = uri("https://maven.airgame.net/maven-snapshots/")
url = if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl
url = uri("https://maven.airgame.net/maven-airgame")
credentials {
username = rootProject.properties.getOrDefault("maven_username", "").toString()