Update gradle, remove HTML build script

Jetty was deprecated and should be replaced with Gretty, but
it didn't work for HTML anyway (#56) so instead I have decided
to remove it entirely for now (it can always be added back in
a future if someone is willing to do so).
This commit is contained in:
Lonami Exo 2019-09-05 16:00:02 +02:00
parent 9b8082ec3a
commit d9ea38b39c
15 changed files with 20 additions and 335 deletions

View file

@ -15,7 +15,7 @@ task run(dependsOn: classes, type: JavaExec) {
}
task dist(type: Jar) {
from files(sourceSets.main.output.classesDir)
from files(sourceSets.main.output.classesDirs)
from files(sourceSets.main.output.resourcesDir)
from {configurations.compile.collect {zipTree(it)}}
from files(project.assetsDir);