-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
36 lines (28 loc) · 886 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
import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
id 'org.springframework.boot' version '2.7.11' apply false
id 'io.spring.dependency-management' version '1.0.15.RELEASE' apply false
id 'java'
}
subprojects {
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
group = 'delivery.app'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation platform(SpringBootPlugin.BOM_COORDINATES)
compileOnly platform(SpringBootPlugin.BOM_COORDINATES)
annotationProcessor platform(SpringBootPlugin.BOM_COORDINATES)
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation "com.github.tomakehurst:wiremock-jre8:2.31.0"
testImplementation 'org.assertj:assertj-core'
}
tasks.named('test') {
useJUnitPlatform()
}
}