-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
60 lines (41 loc) · 1.14 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
apply plugin: "java"
apply plugin: "application"
apply plugin: 'com.github.johnrengelman.shadow'
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.1.1'
}
}
sourceCompatibility= 1.8
mainClassName = "eu.lestard.nonogram.Launcher"
jar.manifest.attributes("Main-Class" : mainClassName)
repositories {
mavenLocal()
mavenCentral()
maven{
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
dependencies {
compile 'org.controlsfx:openjfx-dialogs:1.0.2'
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'de.saxsys:mvvmfx:1.1.0'
compile 'eu.lestard:grid:0.2.0'
compile 'eu.lestard:easy-di:0.1.0'
// testing
testCompile "junit:junit:4.11"
testCompile "org.assertj:assertj-core:1.6.0"
testCompile "org.mockito:mockito-all:1.9.5"
testCompile "eu.lestard:assertj-javafx:0.3.0"
}