-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
31 lines (26 loc) · 1.1 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
plugins {
id 'application'
}
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
mainClassName = 'com.omarassadi.spring.tomlpropertysource.TomlDemoApplication'
ext {
lombokVersion = '1.18.20'
}
dependencies {
implementation project(":spring-toml-property-source")
implementation "org.springframework.boot:spring-boot-starter-web"
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.boot:spring-boot-starter-webflux"
testImplementation 'uk.co.datumedge:hamcrest-json:0.2'
testCompileOnly "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
}
test {
useJUnitPlatform()
}