-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
71 lines (51 loc) · 1.82 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
plugins {
id 'org.springframework.boot' version '2.4.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'war'
}
group = 'com.recipe'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.9'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Spring Boot Starter
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// DB
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'mysql:mysql-connector-java'
compile 'mysql:mysql-connector-java'
// Web
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.apache.tomcat.embed:tomcat-embed-jasper"
implementation 'javax.servlet:jstl'
// Security, Authentication
implementation 'org.springframework.boot:spring-boot-starter-security'
compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.7.0'
//validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.jsoup:jsoup:1.13.1'
// firebase sdk
implementation 'com.google.firebase:firebase-admin:6.8.1'
// okhttp
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
implementation 'org.json:json:20171018'
// //HeaderRequestInterceptor
// compile group: 'org.springframework', name: 'spring-web', version: '4.1.9.RELEASE'
}
test {
useJUnitPlatform()
}