-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
93 lines (74 loc) · 2.71 KB
/
build.gradle.kts
File metadata and controls
93 lines (74 loc) · 2.71 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
plugins {
java
id("org.springframework.boot") version "3.5.8"
id("io.spring.dependency-management") version "1.1.7"
}
group = "com"
version = "0.0.1-SNAPSHOT"
description = "windfall"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
//implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
implementation("io.github.resilience4j:resilience4j-spring-boot3:2.3.0")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web")
compileOnly("org.projectlombok:lombok")
developmentOnly("org.springframework.boot:spring-boot-devtools")
runtimeOnly("com.mysql:mysql-connector-j")
annotationProcessor("org.projectlombok:lombok")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.security:spring-security-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
runtimeOnly("com.h2database:h2")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0")
implementation("com.github.napstr:logback-discord-appender:1.0.0")
// Aws S3
implementation("software.amazon.awssdk:s3:2.40.13")
// Redis
implementation("org.springframework.boot:spring-boot-starter-data-redis")
//querydsl
annotationProcessor("io.github.openfeign.querydsl:querydsl-apt:7.1:jpa")
implementation("io.github.openfeign.querydsl:querydsl-jpa:7.1")
// JWT
implementation("io.jsonwebtoken:jjwt-api:0.11.5")
runtimeOnly("io.jsonwebtoken:jjwt-impl:0.11.5")
runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.11.5")
// 외부 연동
implementation("org.springframework.boot:spring-boot-starter-webflux")
// actuator
implementation("org.springframework.boot:spring-boot-starter-actuator")
// JSON 파싱
// websocket
implementation("org.springframework.boot:spring-boot-starter-websocket")
// Elasticsearch
//implementation("org.springframework.boot:spring-boot-starter-data-elasticsearch")
}
tasks.withType<Test> {
useJUnitPlatform()
}
//-----------querydsl-----------//
val querydslDir = file("src/main/generated")
sourceSets {
main {
java.srcDir(querydslDir)
}
}
tasks.withType<JavaCompile> {
options.generatedSourceOutputDirectory.set(querydslDir)
}
tasks.named("clean") {
doLast {
querydslDir.deleteRecursively()
}
}
//--------------------------------//