1
1
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
-
3
2
plugins {
4
3
id(" org.springframework.boot" ) version " 2.7.4"
5
4
id(" io.spring.dependency-management" ) version " 1.0.14.RELEASE"
6
5
id(" jacoco" )
6
+ id(" org.asciidoctor.jvm.convert" ) version " 3.3.2"
7
7
kotlin(" jvm" ) version " 1.6.21"
8
8
kotlin(" plugin.spring" ) version " 1.6.21"
9
9
}
@@ -15,10 +15,14 @@ repositories {
15
15
mavenCentral()
16
16
}
17
17
18
+
18
19
dependencies {
19
20
implementation(" org.springframework.boot:spring-boot-starter" )
20
21
implementation(" org.jetbrains.kotlin:kotlin-reflect" )
21
22
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8" )
23
+ implementation(" org.springframework.boot:spring-boot-starter-web:2.7.5" )
24
+ testImplementation(" org.springframework.restdocs:spring-restdocs-asciidoctor:2.0.6.RELEASE" )
25
+ testImplementation(" org.springframework.restdocs:spring-restdocs-mockmvc:2.0.6.RELEASE" )
22
26
testImplementation(" org.springframework.boot:spring-boot-starter-test" )
23
27
testImplementation(" io.kotest:kotest-runner-junit5:5.5.2" )
24
28
testImplementation(" io.kotest:kotest-assertions-core:5.5.2" )
@@ -53,7 +57,7 @@ fun ConfigurableFileCollection.excludeSpringBootApplicationClass(){
53
57
tasks.jacocoTestReport {
54
58
reports {
55
59
html.required.set(true )
56
- xml.required.set(true ) // For CodeCoverage
60
+ xml.required.set(false )
57
61
csv.required.set(false )
58
62
}
59
63
classDirectories.excludeSpringBootApplicationClass()
@@ -85,4 +89,52 @@ tasks.jacocoTestCoverageVerification {
85
89
}
86
90
}
87
91
}
92
+ }
93
+ // Spring Rest Docs
94
+ tasks {
95
+ val snippetsDir = file(" $buildDir /generated-snippets" )
96
+
97
+ clean {
98
+ delete(" src/main/resources/static/docs" )
99
+ }
100
+
101
+ test {
102
+ useJUnitPlatform()
103
+ systemProperty(" org.springframework.restdocs.outputDir" , snippetsDir)
104
+ outputs.dir(snippetsDir)
105
+ }
106
+
107
+ build {
108
+ dependsOn(" copyDocument" )
109
+ }
110
+
111
+ asciidoctor {
112
+ dependsOn(test)
113
+
114
+ attributes(
115
+ mapOf (" snippets" to snippetsDir)
116
+ )
117
+ inputs.dir(snippetsDir)
118
+
119
+ doFirst {
120
+ delete(" src/main/resources/static/docs" )
121
+ }
122
+ }
123
+
124
+ register<Copy >(" copyDocument" ) {
125
+ dependsOn(asciidoctor)
126
+
127
+ destinationDir = file(" ." )
128
+ from(asciidoctor.get().outputDir) {
129
+ into(" src/main/resources/static/docs" )
130
+ }
131
+ }
132
+
133
+ bootJar {
134
+ dependsOn(asciidoctor)
135
+
136
+ from(asciidoctor.get().outputDir) {
137
+ into(" BOOT-INF/classes/static/docs" )
138
+ }
139
+ }
88
140
}
0 commit comments