-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (30 loc) · 828 Bytes
/
Copy pathbuild.gradle
File metadata and controls
34 lines (30 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'pl.isangeles.senlin.SenlinGame'
repositories {
flatDir {
dirs 'lib'
}
mavenCentral()
}
jar {
baseName = 'Senlin'
version = '0.1.4'
from {
(configurations.runtime).collect {
it.isDirectory() ? it : zipTree(it)
}
}
manifest {
attributes 'Main-Class': 'pl.isangeles.senlin.SenlinGame'
}
}
dependencies {
compile(name: 'jinput', ext: 'jar')
compile(name: 'jogg-0.0.7', ext: 'jar')
compile(name: 'jorbis-0.0.15', ext: 'jar')
compile(name: 'lwjgl', ext: 'jar')
compile(name: 'slick', ext: 'jar')
// https://mvnrepository.com/artifact/jakarta.xml.soap/jakarta.xml.soap-api
compile group: 'jakarta.xml.soap', name: 'jakarta.xml.soap-api', version: '1.4.2'
}