-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
47 lines (34 loc) · 995 Bytes
/
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
plugins {
id "io.spring.dependency-management" version "1.0.11.RELEASE"
}
group = 'dev.techdozo.grpc'
repositories {
mavenCentral()
}
def mapstructVersion = '1.4.2.Final'
def lombokVersion = '1.18.6'
subprojects {
group = 'dev.techdozo.grpc'
version = '0.0.1'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'java-library'
repositories {
mavenCentral()
}
dependencies {
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
//tests
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:2.5.0")
}
}
compileJava {
sourceCompatibility = 11
targetCompatibility = 11
}
}