-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
105 lines (79 loc) · 2.54 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
plugins {
id 'java'
id 'org.springframework.boot' version '2.3.8.RELEASE'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'groovy'
}
ext {
set('springCloudVersion', "Hoxton.SR9")
}
group = 'com.4m9d'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '11'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
apply plugin: 'groovy'
sourceSets {
main {
java { srcDirs = [] }
groovy { srcDirs += ['src/main/java'] }
}
}
dependencies {
// web
implementation 'org.springframework.boot:spring-boot-starter-web'
// jpa
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// jdbc
// implementation "org.springframework.boot:spring-boot-starter-data-jdbc"
// validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// mariadb
implementation 'org.mariadb.jdbc:mariadb-java-client:3.0.8'
// test
implementation 'junit:junit:4.13.2'
testRuntimeOnly "com.h2database:h2"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// google-api
implementation 'com.google.api-client:google-api-client:1.32.1'
implementation 'com.google.http-client:google-http-client-jackson2:1.39.2'
// jwt
implementation "io.jsonwebtoken:jjwt:0.9.1"
// gson
implementation 'com.google.code.gson:gson:2.8.9'
// aws
implementation 'org.zalando:spring-cloud-config-aws-kms:5.1.2'
implementation 'com.amazonaws:aws-java-sdk-core:1.12.551'
implementation 'com.amazonaws:aws-java-sdk-kms:1.12.551'
implementation 'com.amazonaws:jmespath-java:1.12.551'
// logstash
implementation 'net.logstash.logback:logstash-logback-encoder:7.2'
// okhttp
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
// webflux
implementation "org.springframework.boot:spring-boot-starter-webflux"
// springdoc
implementation 'org.springdoc:springdoc-openapi-ui:1.7.0'
// groovy
implementation 'org.codehaus.groovy:groovy-all:3.0.8'
// json
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.0'
// ehcache
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'net.sf.ehcache:ehcache'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}
tasks.named('test') {
useJUnitPlatform()
}