-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
78 lines (67 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("io.spring.javaformat:spring-javaformat-gradle-plugin:${javaformatVersion}")
}
}
plugins {
id 'org.springframework.boot' version '3.2.5'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.asciidoctor.jvm.convert' version '4.0.2'
id 'java'
}
apply plugin: 'io.spring.javaformat'
apply plugin: 'checkstyle'
group = 'io.spring.project-api'
version = "1.0.0-SNAPSHOT"
sourceCompatibility = '17'
ext {
snippetsDir = file('build/generated-snippets')
}
repositories {
mavenCentral()
}
checkstyle {
toolVersion = "10.5.0"
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'org.springframework.boot:spring-boot-starter-hateoas'
implementation 'org.springframework.boot:spring-boot-starter-graphql'
implementation 'com.azure.spring:spring-cloud-azure-starter-keyvault-secrets'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
implementation 'com.github.ben-manes.caffeine:caffeine'
implementation 'com.vladsch.flexmark:flexmark-all:0.64.8'
implementation 'org.apache.maven:maven-artifact:3.6.3'
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.graphql:spring-graphql-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:${javaformatVersion}")
}
dependencyManagement {
imports {
mavenBom "com.azure.spring:spring-cloud-azure-dependencies:4.5.0"
}
}
tasks.named('test') {
useJUnitPlatform()
outputs.dir snippetsDir
}
asciidoctor {
attributes 'snippets': snippetsDir
dependsOn test
}
bootJar {
dependsOn asciidoctor
from("${asciidoctor.outputDir}/index.html") {
into 'static/restdocs'
}
}