-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·47 lines (42 loc) · 1.13 KB
/
build.gradle
File metadata and controls
executable file
·47 lines (42 loc) · 1.13 KB
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
plugins {
id 'org.springframework.boot' version '2.7.4'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
id 'java'
}
group = 'kr.smartelectric.api'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Spring JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// Spring Web
implementation 'org.springframework.boot:spring-boot-starter-web'
// firebase admin sdk
implementation 'com.google.firebase:firebase-admin:9.0.0'
//lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// devtool
developmentOnly 'org.springframework.boot:spring-boot-devtools'
// h2
testCompileOnly 'com.h2database:h2'
// mysql
runtimeOnly 'mysql:mysql-connector-java'
// Spring test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// auth0 jwt dependency
implementation 'com.auth0:java-jwt:4.0.0'
// httpclient dependency
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
}
tasks.named('test') {
useJUnitPlatform()
}