forked from Sul-Game-Wiki/Sul-Game-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
82 lines (63 loc) · 2.07 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management' version '1.1.5'
}
group = 'org.sejong'
version = '0.0.1'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// springBoot web, JPA
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// security
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
//oauth2
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// jwt
implementation 'io.jsonwebtoken:jjwt-api:0.11.0'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.0'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.0'
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
// lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// maria DB
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
// Hibernate 호환성문제
implementation group: 'com.fasterxml', name: 'classmate', version: '1.7.0'
// OAuth
implementation('org.springframework.boot:spring-boot-starter-oauth2-client')
// AWS S3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// H2 DB
runtimeOnly 'com.h2database:h2'
// MySQL DB
runtimeOnly 'com.mysql:mysql-connector-j'
// HttpClient
implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
// Faker 오늘도 숭배 해야만해....
// Faker 의존성에서 snakeyaml 제외 (버전 충돌) snakeyaml의 2.0버전 명시적으로 추가
implementation('com.github.javafaker:javafaker:1.0.2') {
exclude module: 'snakeyaml'
}
implementation 'org.yaml:snakeyaml:2.0'
}
tasks.named('test') {
useJUnitPlatform()
}