-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
104 lines (80 loc) · 3.27 KB
/
build.gradle
File metadata and controls
104 lines (80 loc) · 3.27 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management' version '1.1.5'
}
group = 'hanium'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '21'
}
repositories {
mavenCentral()
google()
maven {
url 'https://maven.google.com'
}
}
dependencies {
// Spring Boot Starter Web
implementation 'org.springframework.boot:spring-boot-starter-web'
// MySQL and JPA dependencies
implementation 'mysql:mysql-connector-java:8.0.33'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// Jackson for JSON processing
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3'
// Spring Boot Starter Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Spring Boot Starter Mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'jakarta.mail:jakarta.mail-api:2.0.1'
implementation 'jakarta.activation:jakarta.activation-api:2.0.1'
implementation 'com.sun.mail:jakarta.mail:2.0.1'
// Spring Boot Security and OAuth2
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// JWT dependencies
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 'io.jsonwebtoken:jjwt:0.9.1'
// Lombok for reducing boilerplate code
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Spring Boot Starter Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'io.projectreactor:reactor-test'
// JAXB for XML processing
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.1'
// .env file support
implementation 'io.github.cdimascio:java-dotenv:5.2.2'
// Spring WebFlux
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'io.projectreactor:reactor-core'
// Google OAuth2 dependencies
implementation 'com.google.auth:google-auth-library-oauth2-http:1.14.0'
implementation 'com.google.api-client:google-api-client:1.32.2'
implementation 'com.google.http-client:google-http-client-jackson2:1.40.1'
implementation 'com.google.auth:google-auth-library-credentials:1.20.0'
implementation 'com.google.apis:google-api-services-indexing:v3-rev20200804-1.32.1'
implementation 'com.google.oauth-client:google-oauth-client-jetty:1.32.1'
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
// //kakao
// implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
// 실시간 게임
implementation 'org.springframework.boot:spring-boot-starter-websocket'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2020.0.3"
}
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
}
tasks.named('test') {
useJUnitPlatform()
}