-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
41 lines (32 loc) · 1.23 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
plugins {
id "org.springframework.boot" version "2.5.2"
id "io.spring.dependency-management" version "1.0.11.RELEASE"
id "java"
}
group = "com"
version = "0.0.1"
sourceCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
dependencies {
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-jdbc"
implementation "org.springframework.boot:spring-boot-starter-data-rest"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-security"
//mailer
implementation "org.springframework.boot:spring-boot-starter-mail"
implementation 'com.sun.mail:javax.mail:1.6.2'
// firebase
implementation "com.google.firebase:firebase-admin:7.0.0"
runtimeOnly "mysql:mysql-connector-java"
testImplementation "org.springframework.boot:spring-boot-starter-test"
// jwt
implementation("io.jsonwebtoken:jjwt-api:0.11.2")
runtimeOnly("io.jsonwebtoken:jjwt-impl:0.11.2")
runtimeOnly("org.bouncycastle:bcprov-jdk15on:1.60")
runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.11.2")
//json
implementation 'org.json:json:20090211'
}