-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
79 lines (62 loc) · 2.04 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
79
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.4'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.asciidoctor.jvm.convert' version '4.0.2' // 3.3.2
}
group = 'com.boki'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
asciidoctorExt // asciidoctor extensions에 대한 설정주입
}
repositories {
mavenCentral()
}
dependencies {
// Spring boot
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// h2
runtimeOnly 'com.h2database:h2'
// Guava
implementation 'com.google.guava:guava:33.2.1-jre'
// RestDocs
asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
}
tasks.named('test') {
useJUnitPlatform()
}
ext { // 전역 변수
snippetsDir = file('build/generated-snippets') // 문서(코드)조각 경로 지정
}
test {
outputs.dir snippetsDir // 테스트가 끝난 결과물을 이 snipeetsDir로 설정
}
asciidoctor {
inputs.dir snippetsDir // asciidoctor가 작동할 스니펫 위치
configurations 'asciidoctorExt' // 플러그인 설정
sources { // 특정 파일을 html로 만든다
include ("**/index.adoc")
}
baseDirFollowsSourceFile() // 다른 adoc 파일을 include 할 때 경로를 baseDir로 설정
dependsOn test // test가 수행된 다음에 이 태스크 수행
}
bootJar {
dependsOn asciidoctor // 의존성
from("${asciidoctor.outputDir}") { // 문서가 나올때 정적파일로 보기 위해서 파일복사
into 'static/docs'
}
}