-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
78 lines (60 loc) · 2.33 KB
/
build.gradle
File metadata and controls
78 lines (60 loc) · 2.33 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.1'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
maven {
url 'https://repo.spring.io/milestone/'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven { url 'https://repo.spring.io/snapshot' }
maven { url "https://jitpack.io" }
maven {
url "https://maven.atlassian.com/3rdparty/"
mavenContent {
releasesOnly()
}
}
}
dependencies {
// JDBC and H2 database dependencies
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
// Web-related dependencies
implementation 'org.springframework.boot:spring-boot-starter-web'
// Spring Boot DevTools (for development)
developmentOnly 'org.springframework.boot:spring-boot-devtools'
// Additional dependencies
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
developmentOnly 'org.springframework.boot:spring-boot-docker-compose'
runtimeOnly 'org.postgresql:postgresql'
// Spring Security for password encoding and security features
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.security:spring-security-crypto:6.1.0'
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.12.6'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.12.6'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.12.6'
// vertex Gemini API Dependency
implementation 'org.springframework.ai:spring-ai-vertex-ai-gemini-spring-boot-starter:1.0.0-M5'
// Test dependencies
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
//text-to-speech
implementation 'com.google.cloud:google-cloud-texttospeech:2.56.0'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'jakarta.persistence:jakarta.persistence-api:3.1.0'
}
tasks.named('test') {
useJUnitPlatform()
}