Add LICENSE and README files to the distributions

Add WASD key usage to game

Signed-off-by: Chris Cromer <chris@cromer.cl>
Este commit está contenido en:
2019-10-10 16:14:38 -03:00
padre a0c23e8cf3
commit 9f6d6853ad
Se han modificado 5 ficheros con 66 adiciones y 1 borrados

Ver fichero

@@ -61,6 +61,30 @@ build {
dependsOn copyDependencies
}
plugins.withType(DistributionPlugin) {
distTar {
// This is a correct assignment and works as intended
//noinspection GroovyAssignabilityCheck
archiveExtension = "tar.gz"
compression = Compression.GZIP
}
}
task createDocs {
def docs = file("$buildDir/docs")
outputs.dir docs
}
distributions {
main {
contents {
from(createDocs) {
into 'docs'
}
}
}
}
jar.dependsOn(copyDependencies)
tasks.withType(JavaCompile) {