release version 2.4.0

Merge pull request #10 from tommyskeff/release/2.4
This commit is contained in:
Tommy
2025-01-10 21:40:57 +00:00
committed by tommyskeff
48 changed files with 3061 additions and 1181 deletions

View File

@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'java-library'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}
nexusPublishing {
@@ -14,9 +14,9 @@ nexusPublishing {
subprojects {
group = 'dev.tommyjs'
version = '2.3.4'
version = '2.4.0'
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'com.github.johnrengelman.shadow'
tasks {
@@ -30,8 +30,9 @@ subprojects {
}
dependencies {
implementation 'org.jetbrains:annotations:24.1.0'
compileOnly 'org.jetbrains:annotations:24.1.0'
implementation 'org.slf4j:slf4j-api:2.0.12'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'io.projectreactor:reactor-core:3.6.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
@@ -42,6 +43,13 @@ subprojects {
useJUnitPlatform()
testLogging {
exceptionFormat = 'full'
showStandardStreams = true
}
}
java {
sourceCompatibility = JavaVersion.VERSION_22
targetCompatibility = JavaVersion.VERSION_22
withSourcesJar()
}
}