-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
111 lines (88 loc) · 3.15 KB
/
build.gradle
File metadata and controls
111 lines (88 loc) · 3.15 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.11'
id 'io.spring.dependency-management' version '1.1.7'
id "org.flywaydb.flyway" version "11.7.2"
}
group = 'gravit'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Web
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Security & OAuth
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// Database
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'org.postgresql:postgresql'
implementation 'org.flywaydb:flyway-core'
implementation 'org.flywaydb:flyway-database-postgresql'
// Development Tools
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// API Docs
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9'
// Testing
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.assertj:assertj-core:3.24.2'
testRuntimeOnly 'com.h2database:h2'
// Test Container
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.testcontainers:postgresql'
// JWT
implementation 'io.jsonwebtoken:jjwt-api:0.12.3'
implementation 'io.jsonwebtoken:jjwt-impl:0.12.3'
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.3'
// Spring-Retry
implementation("org.springframework.retry:spring-retry")
implementation("org.springframework:spring-aspects")
// Mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
// Redis
implementation "org.springframework.boot:spring-boot-starter-data-redis"
// monitoring
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
// Database Proxy
implementation 'net.ttddyy.observation:datasource-micrometer:1.2.0'
}
// 현재 migration 실행까지 테스트 하려면 TestContainer 가 필요할 듯 싶습니다.
flyway {
url = 'jdbc:h2:mem:testdb;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;DB_CLOSE_DELAY=-1'
user = 'sa'
password = ''
locations = ['filesystem:src/main/resources/db/migration']
validateMigrationNaming = true
ignoreMigrationPatterns = ['*:pending']
}
tasks.register('flywayCi') {
dependsOn 'flywayValidate'
}
tasks.named('build') {
dependsOn 'flywayCi'
}
tasks.named('bootJar') {
dependsOn 'flywayCi'
}
tasks.named('test') {
useJUnitPlatform()
}