-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
61 lines (57 loc) · 1.9 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
buildscript {
ext {
versions = [
springBoot : "2.3.4.RELEASE",
oauth2 : "2.4.0.RELEASE",
dependencyManagement: "1.0.8.RELEASE",
reactor : "3.3.1.RELEASE",
springdoc : "1.5.6",
jackson : "2.10.1",
swagger : "2.1.0",
guava : "28.1-jre",
junit : "5.5.2",
mockito : "3.2.4",
assertJ : "3.14.0",
validator : "6.1.0.Final",
neo4jRx : "1.1.1",
boltNativeTypes : "3.2.16",
slf4j : "1.7.29",
lombok : "1.18.10",
mapstruct : "1.3.1.Final",
jxls : "2.7.2",
jxlsPoi : "2.6.0-rc1",
springBatchAdapter : "0.1.4",
dockerPlugin : "6.1.2"
]
dockerBuildDir = 'build/docker/'
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${versions.springBoot}"
classpath "io.spring.gradle:dependency-management-plugin:${versions.dependencyManagement}"
classpath "com.bmuschko:gradle-docker-plugin:${versions.dockerPlugin}"
}
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
}
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()
}
}