This repository has been archived by the owner on May 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
120 lines (93 loc) · 3.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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
plugins {
id 'org.springframework.boot' version '2.5.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id "org.asciidoctor.jvm.convert" version "3.3.2" // asciidoctor plugin 추가
id "org.sonarqube" version "3.3" // SonarQube
}
group = 'me.blindcafe'
version = '1.1.0'
sourceCompatibility = '11'
compileJava.options.encoding = 'UTF-8'
configurations {
asciidoctorExtensions
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
ext {
snippetsDir = file('build/generated-snippets') // snippets 파일을 저장할 디렉토리 생성
}
test {
useJUnitPlatform()
outputs.dir snippetsDir // 생성된 파일을 미리 생성한 디렉토리(build/generated-snippets)에 저장
}
asciidoctor {
inputs.dir snippetsDir // snippets 디렉토리를 입력으로 함
dependsOn test // test task를 의존, 문서 생성 전에 test를 수행
}
asciidoctor.doFirst {
// delete file('src/main/resources/templates/docs') // 기존 파일 삭제
}
bootJar {
dependsOn asciidoctor // asciidoctor를 의존, bootJar 생성 전에 asciidoctor task를 수행
from("build/docs/asciidoc"){ // 문서 생성 시, Jar 파일 내 static/docs에 복사되도록 함
into 'BOOT-INF/classes/static/docs'
}
}
task copyDocument(type: Copy) {
dependsOn asciidoctor
from file("build/docs/asciidoc")
into file("src/main/resources/templates/docs")
}
build {
// dependsOn copyDocument
}
clean {
delete file('src/main/generated')
}
dependencies {
// spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
// mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
// websocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
// oauth
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// mongo db
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
// aws
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.0.1.RELEASE'
// firebase
implementation 'com.google.firebase:firebase-admin:8.1.0'
// json parse
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
// http request
implementation 'com.squareup.okhttp3:okhttp:4.2.2'
// tika
implementation 'org.apache.tika:tika-core:1.24.1'
// jwt
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
// lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// runtime - database
runtimeOnly 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
// test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
testImplementation 'org.springframework.security:spring-security-test'
}