aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-02-10 19:06:21 +0100
committerNao Pross <naopross@thearcway.org>2018-02-10 19:06:21 +0100
commit21b40a8dcc55b3ec365b4a33f08310957155b50d (patch)
treefe839a00556d2120f52a115cdd3efa54f4de32fc /build.gradle
parentImplement actor, create player (diff)
downloadSubconscious-old-21b40a8dcc55b3ec365b4a33f08310957155b50d.tar.gz
Subconscious-old-21b40a8dcc55b3ec365b4a33f08310957155b50d.zip
Threaded double buffered rendering
Other changes: - Tabs < Spaces - Add jar manifest configuration to gradle.build
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 7a06cf2..b57ab80 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,3 +2,11 @@ apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'Subconscious'
+jar {
+ manifest {
+ attributes(
+ 'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
+ 'Main-Class': 'Subconscious'
+ )
+ }
+}