-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
173 lines (133 loc) · 5 KB
/
build.gradle.kts
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
import org.asciidoctor.gradle.jvm.AsciidoctorTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "3.0.5"
id("io.spring.dependency-management") version "1.1.0"
id("org.asciidoctor.jvm.convert") version "4.0.2"
id("com.diffplug.spotless") version "6.11.0"
kotlin("jvm") version "1.7.22"
kotlin("plugin.spring") version "1.7.22"
kotlin("plugin.jpa") version "1.7.22"
kotlin("kapt") version "1.7.10" // querydsl
id("jacoco") // jacoco 플러그인 추가
id("org.jetbrains.dokka") version "1.9.10" // dokka 플러그인 추가
id("com.epages.restdocs-api-spec") version "0.18.2"
}
allOpen {
annotation("jakarta.persistence.Entity")
annotation("jakarta.persistence.Embeddable")
annotation("jakarta.persistence.MappedSuperclass")
}
noArg {
annotation("javax.persistence.Entity")
}
group = "uoslife"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
}
val snippetsDir by extra { file("build/generated-snippets") }
dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
runtimeOnly("org.postgresql:postgresql")
runtimeOnly("com.h2database:h2")
// validation
implementation("org.springframework.boot:spring-boot-starter-validation")
// flyway
implementation("org.flywaydb:flyway-core")
// swagger
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.4")
// querydsl
implementation("com.querydsl:querydsl-jpa:5.0.0:jakarta")
kapt("com.querydsl:querydsl-apt:5.0.0:jakarta")
implementation(platform("org.testcontainers:testcontainers-bom:1.19.5")) //import bom
// spring security
implementation("org.springframework.boot:spring-boot-starter-security")
testImplementation("org.springframework.security:spring-security-test")
// h2
testImplementation("com.h2database:h2")
// test
testImplementation("org.springframework.boot:spring-boot-starter-test")
// kotest
testImplementation("io.kotest:kotest-runner-junit5:5.8.0")
testImplementation("io.kotest:kotest-assertions-core:5.8.0")
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.1.3")
testImplementation("io.mockk:mockk:1.13.5")
testImplementation("io.kotest.extensions:kotest-extensions-testcontainers:2.0.2")
testImplementation("org.testcontainers:postgresql")
// hibernate annotation
implementation("com.vladmihalcea:hibernate-types-60:2.21.1")
// dokka
dokkaPlugin("org.jetbrains.dokka:mathjax-plugin:1.9.10")
// mail
implementation("org.springframework.boot:spring-boot-starter-mail")
// redis
implementation("org.springframework.boot:spring-boot-starter-data-redis")
// jwt
compileOnly("io.jsonwebtoken:jjwt-api:0.12.6")
runtimeOnly("io.jsonwebtoken:jjwt-impl:0.12.6")
runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.12.6")
testImplementation("io.jsonwebtoken:jjwt-jackson:0.12.6")
testImplementation("io.jsonwebtoken:jjwt-impl:0.12.6")
testImplementation("io.jsonwebtoken:jjwt-api:0.12.6")
// aws
implementation(platform("software.amazon.awssdk:bom:2.17.230"))
implementation("software.amazon.awssdk:sts")
implementation("software.amazon.awssdk:auth")
implementation("software.amazon.awssdk:utils")
implementation("software.amazon.awssdk:regions")
implementation("software.amazon.awssdk:sesv2:2.17.230")
// aws sdk
implementation("com.amazonaws:aws-java-sdk-ses:1.12.777")
// actuator
implementation("org.springframework.boot:spring-boot-starter-actuator")
// OpenFegin
implementation("org.springframework.cloud:spring-cloud-starter-openfeign:4.0.3")
implementation("me.paulschwarz:spring-dotenv:4.0.0")
// Thymeleaf
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}
tasks.named<Jar>("jar") {
enabled = false
}
tasks.withType<Test> {
useJUnitPlatform()
finalizedBy("jacocoTestReport")
}
spotless {
kotlin {
ktfmt().kotlinlangStyle()
}
}
tasks.jacocoTestReport {
dependsOn(tasks.named("spotlessKotlin"))
executionData(fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec"))
reports {
html.required.set(true)
xml.required.set(true)
csv.required.set(false)
}
}
tasks.test {
outputs.dir(snippetsDir)
}
tasks.withType<org.jetbrains.dokka.gradle.DokkaTask> {
dokkaSourceSets {
outputDirectory.set(file("build/dokka"))
named("main") {
displayName.set("Main")
includes.from("src/main/kotlin")
}
}
}