-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (52 loc) · 1.36 KB
/
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
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'com.github.johnrengelman.shadow'
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.0'
}
}
sourceSets {
main {
resources{
srcDir 'resources'
}
}
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile 'com.google.guava:guava:18.0'
compile 'org.slf4j:slf4j-api:1.7.7'
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'uk.org.lidalia:sysout-over-slf4j:1.0.2'
compile 'com.typesafe.akka:akka-actor_2.10:2.3.9'
compile 'com.typesafe.akka:akka-kernel_2.10:2.3.9'
def gdx = '1.5.4'
compile 'com.badlogicgames.gdx:gdx-backend-lwjgl:'+gdx
compile 'com.badlogicgames.gdx:gdx:'+gdx
compile 'com.badlogicgames.gdx:gdx-platform:'+gdx+':natives-desktop'
compile 'com.badlogicgames.gdx:gdx-freetype:'+gdx
compile 'com.badlogicgames.gdx:gdx-freetype-platform:'+gdx+':natives-desktop'
}
compileJava {
options.fork = true
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
javadoc {
include 'net/magik6k/autoshoot/**'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from 'build/docs/javadoc'
classifier 'javadoc'
}