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.
11 lines
241 B
Groovy
11 lines
241 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
implementation project(':game')
|
|
implementation project(':cache')
|
|
implementation project(':net')
|
|
implementation project(':util')
|
|
|
|
testImplementation project(':game:plugin-testing')
|
|
}
|