-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
72 lines (55 loc) · 2.09 KB
/
build.gradle
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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
id 'application' // 추가
}
group = 'passion3.BackEnd'
version = '1.0'
sourceCompatibility = '17'
repositories {
mavenCentral()
google() // 이 줄을 추가하세요.
}
dependencies {
// 인메모리 데이터베이스 h2
runtimeOnly 'com.h2database:h2'
//spring boot
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// lombok
implementation 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
// google cloud stt
implementation 'com.google.guava:guava:30.0-jre'
implementation 'com.google.cloud:google-cloud-speech:4.17.0'
// google cloud tts
implementation 'com.google.cloud:google-cloud-texttospeech:2.24.0'
// Azure Database for MySQL
implementation 'mysql:mysql-connector-java:8.0.28'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation group: 'com.google.guava', name: 'guava', version: '32.1.2-jre'
implementation 'com.google.cloud:google-cloud-dialogflow-cx:0.34.0'
// implementation("io.grpc:grpc-okhttp:1.42.0")
// implementation("com.google.protobuf:protobuf-java:3.16.3")
// implementation("io.grpc:grpc-stub:1.42.0")
//
implementation 'org.apache.commons:commons-text:1.10.0' // 최신 버전 확인
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
implementation 'org.hibernate.validator:hibernate-validator:7.0.1.Final'
implementation 'jakarta.validation:jakarta.validation-api:3.0.0'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
compileJava {
options.compilerArgs << '-Xlint:deprecation'
}
bootJar {
archiveFileName = 'passion3.jar'
}
application { // 추가
mainClass.set('passion3.BackEnd.SpringBootDeveloperApplication')
}
test {
useJUnitPlatform()
}