-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
98 lines (76 loc) · 2.63 KB
/
Copy pathbuild.gradle
File metadata and controls
98 lines (76 loc) · 2.63 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.1'
id 'io.spring.dependency-management' version '1.1.5'
}
group = 'com.munecting'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
all {
exclude group: "commons-logging", module: "commons-logging"
exclude group: "org.slf4j", module: "slf4j-simple"
}
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Web
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.json:json:20240303'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.5.2'
// Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0'
// DB
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.postgresql:postgresql:42.7.2'
// Security
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.google.api-client:google-api-client-jackson2:2.2.0'
implementation 'com.google.api-client:google-api-client:2.2.0'
// valid
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
implementation 'it.ozimov:embedded-redis:0.7.3'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// Spotify
implementation 'se.michaelthelin.spotify:spotify-web-api-java:6.5.2'
//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'
// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// retry
implementation 'org.springframework.retry:spring-retry'
implementation 'org.springframework:spring-aspects'
// Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
//aws
implementation 'io.awspring.cloud:spring-cloud-starter-aws:2.4.4'
//json
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
// Etc
runtimeOnly 'org.postgresql:postgresql'
annotationProcessor 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.h2database:h2'
}
tasks.named('test') {
useJUnitPlatform()
}