🐛 fix race-condition

This commit is contained in:
lia
2025-08-08 21:19:44 +02:00
parent b9cf30150f
commit 4381f704fb
8 changed files with 183 additions and 175 deletions

View File

@@ -7,11 +7,11 @@ plugins {
id("java-library")
id("maven-publish")
id("me.champeau.jmh") version "0.7.2"
id("me.champeau.jmh") version "0.7.3"
}
group = "cc.lunary"
version = "1.1.1-release"
version = "1.2.0-release"
repositories {
mavenLocal()
@@ -62,12 +62,12 @@ dependencies {
java {
withSourcesJar()
withJavadocJar()
toolchain.languageVersion = JavaLanguageVersion.of(JavaVersion.VERSION_17.toString())
toolchain.languageVersion = JavaLanguageVersion.of(JavaVersion.VERSION_21.toString())
}
tasks.withType<JavaCompile> {
sourceCompatibility = JavaVersion.VERSION_17.toString()
targetCompatibility = JavaVersion.VERSION_17.toString()
sourceCompatibility = JavaVersion.VERSION_21.toString()
targetCompatibility = JavaVersion.VERSION_21.toString()
options.encoding = StandardCharsets.UTF_8.toString()
}
@@ -94,7 +94,7 @@ publishing {
pom {
name.set("Lilith")
description.set("A blazingly fast, easy-to-use Java-17 event system.")
description.set("A blazingly fast, easy-to-use Java-21 event system.")
url.set("https://github.com/lunarydess/Library-Lilith-JVM")
packaging = "jar"
@@ -110,11 +110,11 @@ publishing {
name.set("Lucielle R. H.")
}
}
issueManagement { url = "https://github.com/lunarydess/Library-TinyEvents/issues" }
issueManagement { url = "https://git.celesteflare.cc/i0uring/lib_tinyevents/issues" }
scm {
connection = "scm:git:git://github.com/lunarydess/Library-TinyEvents.git"
developerConnection = "scm:git:ssh://github.com/lunarydess/Library-TinyEvents.git"
url = "github.com/lunarydess/Library-TinyEvents"
connection = "scm:git:git://git.celesteflare.cc/i0uring/lib_tinyevents.git"
developerConnection = "scm:git:ssh://git.celesteflare.cc/i0uring/lib_tinyevents.git"
url = "git.celesteflare.cc/i0uring/lib_tinyevents"
}
}
}