mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-02 16:49:12 +00:00
57fc49a42b
Prevent bytecode generation related test failures in tests that rely on PowerMock by updating to PowerMock 2.
20 lines
946 B
Groovy
20 lines
946 B
Groovy
apply plugin: 'java-library'
|
|
|
|
description = 'Apollo Net'
|
|
|
|
dependencies {
|
|
api project(':cache')
|
|
|
|
implementation project(':util')
|
|
implementation group: 'io.netty', name: 'netty-all', version: nettyVersion
|
|
implementation group: 'com.google.guava', name: 'guava', version: guavaVersion
|
|
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: bouncycastleVersion
|
|
|
|
test.useJUnitPlatform()
|
|
testImplementation group: 'junit', name: 'junit', version: junitVersion
|
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: junitJupiterVersion
|
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: junitJupiterVersion
|
|
testImplementation group: 'org.junit.vintage', name: 'junit-vintage-engine', version: junitVintageVersion
|
|
testImplementation group: 'org.junit.platform', name: 'junit-platform-launcher', version: junitPlatformVersion
|
|
}
|