-
Notifications
You must be signed in to change notification settings - Fork 67
/
build.gradle
66 lines (53 loc) · 1.56 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.2.7.RELEASE'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:5.0.3'
classpath "com.netflix.nebula:nebula-publishing-plugin:16.0.0"
}
}
allprojects {
group = 'info.developerblog.spring.thrift'
version = '3.0.1'
repositories {
jcenter()
}
apply plugin: 'idea'
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-starter-parent:2021.0.2"
}
dependencies {
dependency 'org.projectlombok:lombok:1.18.12'
dependency 'org.apache.thrift:libthrift:0.16.0'
dependency 'org.apache.commons:commons-pool2:2.11.1'
dependency 'org.apache.commons:commons-lang3:3.12.0'
}
}
task resolveAllDependencies {
doLast {
configurations.all { it.resolve() }
}
}
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
test {
reports {
junitXml.enabled = true
html.enabled = true
}
useJUnitPlatform()
}
dependencies {
compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
testCompile "org.springframework.boot:spring-boot-starter-test"
}
}