From 21b40a8dcc55b3ec365b4a33f08310957155b50d Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sat, 10 Feb 2018 19:06:21 +0100 Subject: Threaded double buffered rendering Other changes: - Tabs < Spaces - Add jar manifest configuration to gradle.build --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'build.gradle') 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' + ) + } +} -- cgit v1.2.1