-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
67 lines (63 loc) · 2.13 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
61
62
63
64
65
66
67
buildscript {
ext {
versions = [
springBoot : "2.0.3.RELEASE",
dependencyManagement: "0.6.0.RELEASE",
guava : "21.0",
reactivex : "2.0.0",
wsClient : "master-SNAPSHOT",
newRelicAPI : "3.4.1",
commonsCodec : "1.9",
junit : "5.1.0",
mockito : "1.10.19",
assertJ : "3.9.0",
aspectjOAP : "1.8.12",
validator : "6.0.9.Final",
swagger : "2.7.0",
tokenBucket : "1.6",
commonsMath : "3.6.1",
flywaydb : "4.0.3",
rxWamp : "0.5.0",
statemachine : "2.0.1.RELEASE",
optaPlanner : "7.6.0.Final",
cqengine : "2.12.4",
hibernate : "5.2.16.Final",
retry : "1.2.2.RELEASE",
deep4j : "1.0.0-beta",
csv : "1.4",
h2 : "1.4.197"
]
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${versions.springBoot}"
classpath "io.spring.gradle:dependency-management-plugin:${versions.dependencyManagement}"
}
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.8'
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}
apply plugin: 'java'
apply plugin: 'idea'
idea {
project {
//if you want to set specific jdk and language level
jdkName = JavaVersion.VERSION_1_8
languageLevel = JavaVersion.VERSION_1_8
}
module {
downloadJavadoc = true
downloadSources = true
}
}
subprojects {
tasks.withType(Test) {
useJUnitPlatform()
}
}