mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 16:49:11 +00:00
57fc49a42b
Prevent bytecode generation related test failures in tests that rely on PowerMock by updating to PowerMock 2.
17 lines
776 B
Groovy
17 lines
776 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
apply from: "$rootDir/gradle/kotlin.gradle"
|
|
|
|
dependencies {
|
|
api group: 'io.gitlab.arturbosch.detekt', name: 'detekt-api', version: detektVersion
|
|
api group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8'
|
|
|
|
test.useJUnitPlatform()
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params:${junitJupiterVersion}")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}")
|
|
testImplementation("org.junit.platform:junit-platform-launcher:${junitPlatformVersion}")
|
|
|
|
testImplementation group: 'io.gitlab.arturbosch.detekt', name: 'detekt-test', version: detektVersion
|
|
}
|