forked from 5STARJeongHee/Gridge-Test-2024-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
86 lines (62 loc) · 2.13 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
plugins {
id 'org.springframework.boot' version '2.7.5'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 11
targetCompatibility = 11
compileJava.options.encoding = 'UTF-8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
jar {
enabled = false
}
dependencies {
implementation 'org.jetbrains:annotations:23.0.0'
// Spring Boot Starter
testImplementation ('org.springframework.boot:spring-boot-starter-test')
// Lombok
implementation ('org.projectlombok:lombok')
compileOnly ('org.projectlombok:lombok:1.18.24')
annotationProcessor ('org.projectlombok:lombok:1.18.24')
// DB
runtimeOnly ('mysql:mysql-connector-java') //mysql8
//runtimeOnly 'mysql:mysql-connector-java:5.1.47' //mysql5
implementation ('org.springframework.boot:spring-boot-starter-jdbc')
implementation ('org.springframework.boot:spring-boot-starter-data-jpa')
// Web
implementation ('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter')
implementation('org.springframework.boot:spring-boot-starter-web')
// Validation
implementation('org.springframework.boot:spring-boot-starter-validation')
// jwt
implementation(group: 'io.jsonwebtoken', name: 'jjwt', version: '0.11.5')
implementation('io.jsonwebtoken:jjwt:0.9.1')
// Swagger
implementation ('org.springdoc:springdoc-openapi-ui:1.6.14')
// Envers
implementation ('org.springframework.data:spring-data-envers')
// Iamport
implementation ('com.github.iamport:iamport-rest-client-java:0.1.6')
// Security
implementation ('org.springframework.boot:spring-boot-starter-security')
// OAuth2
//implementation ('org.springframework.boot:spring-boot-starter-oauth2-client')
// Firebase
implementation 'com.google.firebase:firebase-admin:9.2.0'
// IOUtils
implementation 'commons-io:commons-io:2.6'
}
test {
useJUnitPlatform()
}