-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
64 lines (52 loc) · 964 Bytes
/
build.gradle
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
buildscript{
repositories {
jcenter()
}
dependencies {
classpath 'eu.appsatori:gradle-fatjar-plugin:0.3'
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
apply plugin: 'eu.appsatori.fatjar'
version = 1.0
sourceCompatibility = 1.8
targetCompatibility = 1.8
description = 'AI Wolf Project'
jar {
manifest {
attributes 'Main-Class': 'glyAiWolf.Main'
}
}
fatJar{
baseName = 'glyAiWolf'
manifest{
attributes('Main-Class': 'glyAiWolf.Main')
}
}
sourceSets {
main {
java {
srcDir 'src/java'
}
resources {
srcDir 'src/resources'
}
}
}
ext {
slf4jVersion = '1.7+'
slf4jGroup = 'org.slf4j'
}
configurations {
extraLib
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'net.arnx', name: 'jsonic', version: '1.3.10'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
compile fileTree(dir: 'libs', include:['*.jar'])
}