-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (25 loc) · 1.01 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
plugins {
id 'java'
id "org.springframework.boot" version "2.1.4.RELEASE"
}
apply plugin: 'io.spring.dependency-management'
group 'org.fsin.'
version '0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.13'
implementation 'org.springframework:spring-jdbc'
implementation 'org.springframework:spring-web'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.security:spring-security-config'
implementation 'org.springframework.security:spring-security-web'
implementation("commons-codec:commons-codec:1.12")
implementation 'javax.mail:mail:1.5.0-b01'
testImplementation 'org.springframework.boot:spring-boot-starter-webflux'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}