-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (40 loc) · 1.39 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
plugins {
id 'org.springframework.boot' version '2.5.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.jandy'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'mysql:mysql-connector-java'
implementation 'org.projectlombok:lombok:1.18.18'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
implementation 'junit:junit:4.12'
implementation 'junit:junit:4.12'
implementation 'junit:junit:4.12'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//swagger
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
//h2
implementation 'com.h2database:h2'
runtimeOnly 'com.h2database:h2'
//google sso
implementation group: 'com.google.api-client', name: 'google-api-client-jackson2', version: '1.30.10'
implementation 'com.google.api-client:google-api-client:1.31.2'
//json
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
// test
implementation group : 'org.mockito', name:'mockito-core', version:'1.9.5'
}
test {
useJUnitPlatform()
}