Skip to content

Commit 77e2821

Browse files
committed
Initialising Gradle
1 parent 744e598 commit 77e2821

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)