-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.gradle
45 lines (34 loc) · 1.2 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
plugins {
id "checkstyle"
id "java"
id "io.spring.javaformat" version "0.0.35"
id "org.springframework.boot" version "3.0.1"
}
group = "io.spring.issuebot"
repositories {
mavenCentral()
}
dependencies {
annotationProcessor(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:0.0.35")
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
implementation("org.apache.httpcomponents.client5:httpclient5")
implementation("org.springframework.boot:spring-boot-starter-web")
runtimeOnly(platform("com.azure.spring:spring-cloud-azure-dependencies:4.5.0"))
runtimeOnly("com.azure.spring:spring-cloud-azure-starter-keyvault-secrets")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
checkstyle {
toolVersion = "10.6.0"
}
java {
sourceCompatibility = "17"
}
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
}
tasks.withType(Test).configureEach {
useJUnitPlatform()
}