-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
76 lines (66 loc) · 2.8 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.8-SNAPSHOT'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.CoDEVumc'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
jar {
enabled = false
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'mysql:mysql-connector-java:8.0.25'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.1'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
// mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
//implementation group: 'org.springframework', name: 'spring-context-support', version: '5.3.23'
implementation group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'
// com.sun.xml.bind
implementation 'com.sun.xml.bind:jaxb-impl:4.0.1'
implementation 'com.sun.xml.bind:jaxb-core:4.0.1'
// javax.xml.bind
implementation 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
// gson
implementation 'org.jsoup:jsoup:1.14.3'
implementation 'com.google.code.gson:gson:2.7'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
implementation group: 'com.google.api-client', name: 'google-api-client-jackson2', version: '1.30.10'
//websocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.webjars:sockjs-client:1.1.2'
implementation 'org.webjars:stomp-websocket:2.3.3-1'
//view
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
//mongoDB
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
// firebase sdk
implementation 'com.google.firebase:firebase-admin:6.8.1'
// okhttp
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2'
}
tasks.named('test') {
useJUnitPlatform()
}