2023-02-28T02:14:36

This commit is contained in:
2023-02-28 02:14:36 +09:00
parent f2a44efb88
commit ff315ca0d3
31 changed files with 8949 additions and 3944 deletions

View File

@@ -29,7 +29,7 @@ configurations {
repositories {
maven {
url = uri("https://repository.elex-project.com/repository/maven")
url = uri(project.findProperty("repo.url") as String)
}
}
@@ -69,8 +69,8 @@ tasks.javadoc {
}
dependencies {
implementation("org.slf4j:slf4j-api:1.7.30")
implementation("org.jetbrains:annotations:22.0.0")
implementation("org.slf4j:slf4j-api:2.0.6")
implementation("org.jetbrains:annotations:24.0.0")
implementation("com.elex-project:abraxas:4.7.2")
implementation("com.elex-project:abraxas:4.11.0")
}

View File

@@ -11,11 +11,11 @@ plugins{
}
dependencies {
compileOnly("org.projectlombok:lombok:1.18.16")
annotationProcessor("org.projectlombok:lombok:1.18.16")
testAnnotationProcessor("org.projectlombok:lombok:1.18.16")
compileOnly("org.projectlombok:lombok:1.18.26")
annotationProcessor("org.projectlombok:lombok:1.18.26")
testAnnotationProcessor("org.projectlombok:lombok:1.18.26")
testImplementation("ch.qos.logback:logback-classic:1.2.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.7.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.0")
testImplementation("ch.qos.logback:logback-classic:1.4.5")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2")
}