-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
156 lines (122 loc) ยท 4.92 KB
/
Copy pathbuild.gradle
File metadata and controls
156 lines (122 loc) ยท 4.92 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.6'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.asciidoctor.jvm.convert' version '4.0.5'
id "io.sentry.jvm.gradle" version "6.0.0"
}
group = 'com.todaysound'
version = '0.0.1-SNAPSHOT'
description = 'Demo project for Spring Boot'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
asciidoctorExt
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// 1. Sentry
implementation platform('io.sentry:sentry-bom:8.31.0')
implementation 'io.sentry:sentry-spring-boot-starter-jakarta'
implementation 'io.sentry:sentry-logback'
// P6Spy Spring Boot Starter
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.9.1'
// Micrometer Metrics
implementation 'io.micrometer:micrometer-registry-prometheus' // Prometheus
// Micrometer Tracing - traceId/spanId ์๋ ์์ฑ
implementation 'io.micrometer:micrometer-tracing-bridge-brave'
// Tempo๋ก trace export (Zipkin wire format).
// Spring Boot 3.5 BOM์ด io.zipkin.reporter2 ๊ทธ๋ฃน์ 3.5.x ๋ฒ์ ์ผ๋ก ๊ด๋ฆฌ.
// ("reporter3" ๊ทธ๋ฃน์ ์กด์ฌํ์ง ์์ โ ๊ทธ๋ฃน๋ช
์ reporter2 ์ ์งํ๊ณ ๋ด๋ถ ๋ฒ์ ๋ง v3๋ก ์ฌ๋ผ์ด.)
// - reporter-brave: Brave Span โ Zipkin V2 ๋ชจ๋ธ ๋ณํ
// - sender-urlconnection: ์ค์ HTTP POST. Sender ์์ผ๋ฉด ZipkinSpanHandler ๋น ์์ฑ ์ ๋จ
implementation 'io.zipkin.reporter2:zipkin-reporter-brave'
implementation 'io.zipkin.reporter2:zipkin-sender-urlconnection'
// ๊ตฌ์กฐํ๋ JSON ๋ก๊น
implementation 'net.logstash.logback:logstash-logback-encoder:8.0'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0'
// RestDocs
asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
// QueryDsl
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
// Firebase Admin SDK
implementation 'com.google.firebase:firebase-admin:9.2.0'
// test containers
testImplementation "org.testcontainers:testcontainers"
testImplementation 'org.testcontainers:mysql'
testImplementation 'org.testcontainers:jdbc'
testImplementation 'org.testcontainers:junit-jupiter'
// flyway
implementation 'org.flywaydb:flyway-core:11.20.1'
implementation 'org.flywaydb:flyway-mysql'
}
tasks.named('test') {
useJUnitPlatform()
}
ext { // ์ ์ญ ๋ณ์
snippetsDir = file("build/generated-snippets")
}
test { // test ์คํ ํ ๊ฒฐ๊ณผ๋ฅผ snippetsDir์ ์ ์ฅ
outputs.dir snippetsDir
afterTest { desc, result ->
if (result.resultType == TestResult.ResultType.FAILURE) { // ํ
์คํธ๊ฐ ์คํจํ๋ค๋ฉด?
println("๐ด FAILED TEST: " + desc.getDisplayName()) // ์คํจํ ํ
์คํธ ์ด๋ฆ ์ถ๋ ฅ
println("======================================")
result.exception?.printStackTrace() // ์์ธ ์๋ฌ ๋ด์ฉ ์ถ๋ ฅ
println("======================================")
}
}
}
asciidoctor { // adoc ๋ฌธ์ ํ์ผ์ ์ฝ์ด์ HTML๋ก ๋ณํ
inputs.dir snippetsDir
configurations 'asciidoctorExt'
sources { // ํน์ ํ์ผ๋ง html๋ก ๋ง๋ค
include('**/index.adoc')
}
baseDirFollowsSourceDir()
dependsOn test
}
tasks.register('copyDocument', Copy) { // 8
dependsOn asciidoctor
from file("build/docs/asciidoc")
into file("docs")
}
asciidoctor.doFirst {
delete file('docs')
}
bootJar { // ์์ฑ๋ HTML ํ์ผ์ static/docs ํด๋์ ๋ณต์ฌ
dependsOn asciidoctor
from("${asciidoctor.outputDir}") {
into 'static/docs'
}
}
sentry {
// ์์ค ์ฝ๋๋ฅผ ์ผํธ๋ฆฌ์ ์
๋ก๋ํ์ฌ ์๋ฌ ๋ฐ์ ์ ์ฝ๋ ๋ฌธ๋งฅ์ ๋ณด์ฌ์ค๋๋ค.
includeSourceContext = true
org = "todaysound"
projectName = "java-spring-boot"
authToken = System.getenv("SENTRY_AUTH_TOKEN")
}