-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
47 lines (36 loc) · 1.29 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
// Customize this file for your project as needed
/////////////////////////////////////////////////
allprojects {
version = '1.0.0'
}
// apply the common avol gradle tasks to setup artifact repos, etc.
apply from: file('gradle/avol.gradle')
// If you rename your packages, feel free to rename this..
mainClassName = ext.serviceClassName
// Add dependencies below..
ext.slf4jVer = '[1.7.7,1.9.0)'
ext.logbackVer = '[1.0.10,1.1.0)'
ext.jacksonVer = '2.3.3'
ext.lombokVer = '1.16.2'
allprojects {
dependencies {
// logging
//compile "org.slf4j:slf4j-api:$slf4jVer"
//JSONdoc.
//compile 'org.jsondoc:jsondoc-core:1.1.14'
compile 'org.jsondoc:spring-boot-starter-jsondoc:1.1.14'
compile 'org.jsondoc:jsondoc-ui-webjar:1.1.14'
//Jackson.
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.3'
//lombok
compile "org.projectlombok:lombok:$lombokVer"
testCompile 'junit:junit:4.11'
//testCompile 'org.mockito:mockito-all:1.9.5'
testRuntime "org.slf4j:slf4j-ext:$slf4jVer"
testRuntime "org.slf4j:jcl-over-slf4j:$slf4jVer"
testRuntime "org.slf4j:jul-to-slf4j:$slf4jVer"
testRuntime "org.slf4j:log4j-over-slf4j:$slf4jVer"
//testRuntime "ch.qos.logback:logback-core:$logbackVer"
//testRuntime "ch.qos.logback:logback-classic:$logbackVer"
}
}