Merge pull request #55 from onixbyte/develop
chore: downgrade junit jupiter to version 5.11.4
This commit is contained in:
@@ -59,7 +59,8 @@ dependencies {
|
|||||||
compileOnly(libs.slf4j)
|
compileOnly(libs.slf4j)
|
||||||
implementation(libs.logback)
|
implementation(libs.logback)
|
||||||
|
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ dependencies {
|
|||||||
compileOnly(libs.slf4j)
|
compileOnly(libs.slf4j)
|
||||||
implementation(libs.logback)
|
implementation(libs.logback)
|
||||||
api(project(":devkit-core"))
|
api(project(":devkit-core"))
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -20,17 +20,18 @@ jackson = "2.18.3"
|
|||||||
jwt = "4.5.0"
|
jwt = "4.5.0"
|
||||||
spring = "6.2.6"
|
spring = "6.2.6"
|
||||||
springBoot = "3.4.4"
|
springBoot = "3.4.4"
|
||||||
junit = "5.12.2"
|
junit = "5.11.4"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j" }
|
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j" }
|
||||||
logback = { group = "ch.qos.logback", name = "logback-classic", version.ref = "logback" }
|
logback = { group = "ch.qos.logback", name = "logback-classic", version.ref = "logback" }
|
||||||
jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core", version.ref = "jackson" }
|
jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core", version.ref = "jackson" }
|
||||||
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jackson" }
|
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jackson" }
|
||||||
jwt = { group = "com.auth0", name = "java-jwt", version.ref = "jwt"}
|
jwt = { group = "com.auth0", name = "java-jwt", version.ref = "jwt" }
|
||||||
spring-boot-autoconfigure = { group = "org.springframework.boot", name = "spring-boot-autoconfigure", version.ref = "springBoot" }
|
spring-boot-autoconfigure = { group = "org.springframework.boot", name = "spring-boot-autoconfigure", version.ref = "springBoot" }
|
||||||
spring-boot-starter-logging = { group = "org.springframework.boot", name = "spring-boot-starter-logging", version.ref = "springBoot" }
|
spring-boot-starter-logging = { group = "org.springframework.boot", name = "spring-boot-starter-logging", version.ref = "springBoot" }
|
||||||
spring-boot-configuration-processor = { group = "org.springframework.boot", name = "spring-boot-configuration-processor", version.ref = "springBoot" }
|
spring-boot-configuration-processor = { group = "org.springframework.boot", name = "spring-boot-configuration-processor", version.ref = "springBoot" }
|
||||||
spring-boot-starter-redis = { group = "org.springframework.boot", name = "spring-boot-starter-data-redis", version.ref = "springBoot" }
|
spring-boot-starter-redis = { group = "org.springframework.boot", name = "spring-boot-starter-data-redis", version.ref = "springBoot" }
|
||||||
spring-boot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test", version.ref = "springBoot" }
|
spring-boot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test", version.ref = "springBoot" }
|
||||||
junit = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junit" }
|
junit-bom = { group = "org.junit", name = "junit-bom", version.ref = "junit" }
|
||||||
|
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junit" }
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ dependencies {
|
|||||||
compileOnly(libs.slf4j)
|
compileOnly(libs.slf4j)
|
||||||
implementation(libs.logback)
|
implementation(libs.logback)
|
||||||
api(project(":devkit-core"))
|
api(project(":devkit-core"))
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -55,11 +55,16 @@ dependencies {
|
|||||||
compileOnly(libs.slf4j)
|
compileOnly(libs.slf4j)
|
||||||
implementation(libs.logback)
|
implementation(libs.logback)
|
||||||
api(project(":devkit-core"))
|
api(project(":devkit-core"))
|
||||||
testImplementation(libs.junit)
|
testImplementation(libs.jwt)
|
||||||
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
|
testLogging {
|
||||||
|
events("passed", "skipped", "failed")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ dependencies {
|
|||||||
compileOnly(libs.slf4j)
|
compileOnly(libs.slf4j)
|
||||||
implementation(libs.logback)
|
implementation(libs.logback)
|
||||||
api(project(":devkit-core"))
|
api(project(":devkit-core"))
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ dependencies {
|
|||||||
compileOnly(libs.slf4j)
|
compileOnly(libs.slf4j)
|
||||||
implementation(libs.logback)
|
implementation(libs.logback)
|
||||||
api(project(":devkit-core"))
|
api(project(":devkit-core"))
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -60,7 +60,8 @@ dependencies {
|
|||||||
implementation(libs.spring.boot.starter.logging)
|
implementation(libs.spring.boot.starter.logging)
|
||||||
implementation(libs.spring.boot.configuration.processor)
|
implementation(libs.spring.boot.configuration.processor)
|
||||||
|
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
testImplementation(libs.spring.boot.starter.test)
|
testImplementation(libs.spring.boot.starter.test)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -62,7 +62,8 @@ dependencies {
|
|||||||
api(libs.jackson.databind)
|
api(libs.jackson.databind)
|
||||||
api(libs.jwt)
|
api(libs.jwt)
|
||||||
|
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -59,7 +59,8 @@ dependencies {
|
|||||||
api(project(":devkit-utils"))
|
api(project(":devkit-utils"))
|
||||||
api(project(":guid"))
|
api(project(":guid"))
|
||||||
|
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -63,7 +63,8 @@ dependencies {
|
|||||||
implementation(libs.spring.boot.configuration.processor)
|
implementation(libs.spring.boot.configuration.processor)
|
||||||
annotationProcessor(libs.spring.boot.configuration.processor)
|
annotationProcessor(libs.spring.boot.configuration.processor)
|
||||||
|
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
testImplementation(libs.spring.boot.starter.test)
|
testImplementation(libs.spring.boot.starter.test)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,8 @@ dependencies {
|
|||||||
api(project(":devkit-utils"))
|
api(project(":devkit-utils"))
|
||||||
implementation(libs.jackson.core)
|
implementation(libs.jackson.core)
|
||||||
implementation(libs.jackson.databind)
|
implementation(libs.jackson.databind)
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
|
|||||||
@@ -62,7 +62,8 @@ dependencies {
|
|||||||
implementation(libs.spring.boot.starter.redis)
|
implementation(libs.spring.boot.starter.redis)
|
||||||
annotationProcessor(libs.spring.boot.configuration.processor)
|
annotationProcessor(libs.spring.boot.configuration.processor)
|
||||||
|
|
||||||
testImplementation(libs.junit)
|
testImplementation(platform(libs.junit.bom))
|
||||||
|
testImplementation(libs.junit.jupiter)
|
||||||
testImplementation(libs.spring.boot.starter.test)
|
testImplementation(libs.spring.boot.starter.test)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user