-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (41 loc) · 1.22 KB
/
build.gradle
File metadata and controls
52 lines (41 loc) · 1.22 KB
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
plugins {
id 'java'
id 'io.franzbecker.gradle-lombok' version '2.1'
id 'com.github.ben-manes.versions' version '0.21.0'
}
ext {
junitVersion = '4.12'
hamcrestVersion = '1.3'
guiceVersion = '4.2.2'
guavaVersion = '27.1-jre'
}
allprojects {
group = 'ru.innopolis.mputilov'
apply plugin: 'java'
apply plugin: 'io.franzbecker.gradle-lombok'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile("com.google.inject:guice:${guiceVersion}")
compile("com.google.inject.extensions:guice-assistedinject:${guiceVersion}")
compile("com.google.guava:guava:${guavaVersion}")
testCompile("junit:junit:${junitVersion}") {
exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
testCompile("org.hamcrest:hamcrest-all:${hamcrestVersion}")
}
}
tasks.withType(JavaCompile) {
options.incremental = true
}
version '0.1.0-SNAPSHOT'
sourceCompatibility = 1.8
dependencies {
def poiVersion = '4.0.1'
compile project(':core')
compile("org.apache.poi:poi:${poiVersion}")
compile("org.apache.poi:poi-ooxml:${poiVersion}")
compile("org.apache.poi:poi-ooxml-schemas:${poiVersion}")
}