-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
81 lines (66 loc) · 2.86 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
73
74
75
76
77
78
79
80
81
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.12'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
group = 'com.pyonsnalcolor'
version = '1.0'
sourceCompatibility = '11'
jar {
enabled = false
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
// DB
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb:2.7.12'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.12'
implementation 'org.springframework.boot:spring-boot-starter-data-redis:2.7.4'
implementation 'io.lettuce:lettuce-core:6.2.4.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-validation'
runtimeOnly 'com.h2database:h2:2.1.214'
runtimeOnly 'com.mysql:mysql-connector-j:8.0.33'
// Test
testImplementation 'junit:junit'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
testImplementation 'org.junit.platform:junit-platform-launcher:1.9.0'
testImplementation 'org.junit.vintage:junit-vintage-engine:5.9.0'
// Security
implementation 'org.springframework.security:spring-security-core:5.5.0'
implementation 'org.springframework.security.oauth:spring-security-oauth2:2.5.2.RELEASE'
implementation 'org.springframework.security:spring-security-config:5.5.0'
testImplementation 'org.springframework.security:spring-security-test:4.2.1.RELEASE'
// parsing
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'org.jsoup:jsoup:1.16.1'
// JWT
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
// Swagger
implementation 'org.springdoc:springdoc-openapi-ui:1.6.9'
implementation 'org.springdoc:springdoc-openapi-security:1.2.15'
// Batch
implementation 'org.springframework.boot:spring-boot-starter-batch:2.7.12'
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:3.1.7'
testImplementation 'org.springframework.batch:spring-batch-test:4.3.8'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'net.gpedro.integrations.slack:slack-webhook:1.4.0'
// aws
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// FCM
implementation 'com.google.firebase:firebase-admin:9.2.0'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}