-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
52 lines (39 loc) · 1.36 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
plugins {
id 'java'
}
group 'dev.tarasshablii'
version '1.0'
repositories {
mavenLocal()
mavenCentral()
}
subprojects {
apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
group 'dev.tarasshablii'
version '1.0'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
implementation "org.mapstruct:mapstruct:$mapstructVersion"
annotationProcessor "org.mapstruct:mapstruct-processor:$mapstructVersion"
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:$springBootVersion"
runtimeOnly "org.springframework.boot:spring-boot-devtools:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter:$springBootVersion"
testImplementation "com.tngtech.archunit:archunit-junit5:$archUnitVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
}
tasks.withType(Test).tap {
configureEach {
useJUnitPlatform()
}
}
}