Remove apollo-plugin Gradle plugin

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.
This commit is contained in:
Gary Tierney
2018-08-27 00:55:41 +01:00
parent 1f7eb78ddb
commit a53929a9a8
45 changed files with 886 additions and 753 deletions
+13 -10
View File
@@ -1,10 +1,13 @@
plugin {
name = "edgeville"
authors = [
"Jesse W",
"Arham 4"
]
dependencies = [
"entity:spawn", "shops"
]
}
apply plugin: 'kotlin'
dependencies {
implementation project(':game')
implementation project(':cache')
implementation project(':net')
implementation project(':util')
implementation project(':game:plugin:entity:spawn')
implementation project(':game:plugin:shops')
testImplementation project(':game:plugin-testing')
}