mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-02 16:49:12 +00:00
a53929a9a8
Replaces the old Gradle plugin with plain Gradle buildscripts. Also cleans-up the current Gradle extensions and re-adds detekt, along with JUnit 5 support to all modules.
15 lines
667 B
Groovy
15 lines
667 B
Groovy
apply plugin: 'java-library'
|
|
|
|
description = 'Apollo Cache'
|
|
|
|
dependencies {
|
|
implementation project(':util')
|
|
implementation group: 'com.google.guava', name: 'guava', version: guavaVersion
|
|
|
|
test.useJUnitPlatform()
|
|
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
|
|
}
|