forked from manuel-mauky/SnakeFX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (30 loc) · 875 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.0'
}
sourceCompatibility= 1.8
mainClassName = "eu.lestard.snakefx.Launcher"
repositories {
mavenLocal()
mavenCentral()
maven{
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
compile "org.codehaus.jackson:jackson-mapper-asl:1.9.13"
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'de.saxsys:mvvmfx:1.2.0'
compile 'eu.lestard:grid:0.2.0'
compile 'eu.lestard:easy-di:0.3.0'
compile 'eu.lestard:advanced-bindings:0.4.0'
compile 'eu.lestard:fx-zeug:0.1-SNAPSHOT'
// testing
testCompile "junit:junit:4.12"
testCompile "org.assertj:assertj-core:1.6.1"
testCompile "org.mockito:mockito-all:1.10.19"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}