-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
48 lines (43 loc) · 1.54 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
buildscript {
ext {
springBootVersion = '2.4.1'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group 'com.banchango'
version '3.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
compileOnly('org.projectlombok:lombok')
annotationProcessor('org.projectlombok:lombok')
implementation('org.springframework.boot:spring-boot-starter-validation')
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.hibernate:hibernate-core:5.4.2.Final')
implementation('mysql:mysql-connector-java')
implementation('org.jetbrains:annotations:16.0.2')
implementation('org.apache.tomcat.embed:tomcat-embed-jasper')
implementation('io.jsonwebtoken:jjwt:0.9.1')
implementation('javax.activation:activation:1.1')
implementation('javax.mail:mail:1.4.7')
implementation('org.json:json:20200518')
implementation platform('software.amazon.awssdk:bom:2.15.0')
implementation('software.amazon.awssdk:ses')
implementation('software.amazon.awssdk:s3')
testImplementation('com.h2database:h2')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('junit:junit:4.13.1')
}