-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
96 lines (77 loc) · 3.23 KB
/
build.gradle
File metadata and controls
96 lines (77 loc) · 3.23 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.4'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
jar {
enabled = false
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-security'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'io.netty:netty-resolver-dns-native-macos:4.1.68.Final:osx-aarch_64'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
//json 웹토큰
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// oracleDB
runtimeOnly 'com.oracle.database.jdbc:ojdbc11'
implementation 'com.oracle.database.security:osdt_cert'
implementation 'com.oracle.database.security:oraclepki'
implementation 'com.oracle.database.security:osdt_core'
//swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
//email
implementation 'org.springframework.boot:spring-boot-starter-mail'
//redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// oci bucket
implementation 'com.oracle.oci.sdk:oci-java-sdk:3.38.0'
implementation 'com.oracle.oci.sdk:oci-java-sdk-common:3.38.0'
implementation 'com.oracle.oci.sdk:oci-java-sdk-objectstorage:3.38.0'
implementation 'com.oracle.oci.sdk:oci-java-sdk-common-httpclient:3.38.0'
implementation 'com.oracle.oci.sdk:oci-java-sdk-common-httpclient-choices:3.38.0'
implementation ('com.oracle.oci.sdk:oci-java-sdk-common-httpclient-jersey3:3.37.0')
// webflux
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// FCM
implementation 'com.google.firebase:firebase-admin:9.1.1'
// Retry
implementation 'org.springframework.retry:spring-retry'
implementation 'org.springframework:spring-aspects'
// Jackson
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.0'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
// Logstash
// implementation 'net.logstash.logback:logstash-logback-encoder:7.2'
}
tasks.named('test') {
useJUnitPlatform()
}