We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744e598 commit 77e2821Copy full SHA for 77e2821
build.gradle
@@ -0,0 +1,19 @@
1
+repositories{
2
+ mavenCentral()
3
+}
4
+
5
+apply plugin: 'java'
6
7
+sourceSets.main.java.srcDir "src"
8
+sourceSets.main.resources.srcDirs "res"
9
10
+dependencies{
11
+ compile "org.apache.commons:commons-lang3:3.1"
12
+ compile "javazoom:jlayer:1.0.1"
13
+ compile files("res/jars/JSplashScreen.jar")
14
15
16
+jar {
17
+ from configurations.compile.collect { zipTree it }
18
+ manifest.attributes "Main-Class" : "com.redomar.game.Launcher"
19
0 commit comments