-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (27 loc) · 838 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
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'application'
repositories {
mavenCentral()
}
ext {
emailNotification = "[email protected]"
}
// This codebase actually uses java 8 syntax now so do not revert.
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = "com.morphiles.Application"
project.buildDir = 'bin'
dependencies {
// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'org.jfree:jfreechart:1.0.19'
compile 'org.apache.poi:poi:3.15'
compile 'org.codehaus.groovy:groovy-all:2.4.7'
testCompile 'junit:junit:4.12'
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4-rc-2'
}
test << {
testClassesDir = sourceSets.test.output.classesDir
}