-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (53 loc) · 1.57 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
plugins {
id 'java'
id 'org.springframework.boot'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id "com.diffplug.spotless"
}
group = 'com.team'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
spotless {
java {
googleJavaFormat('1.8')
indentWithTabs(2)
indentWithSpaces(4)
}
}
}
repositories {
mavenCentral()
}
dependencies {
implementation Spring.boot.security
implementation Spring.boot.validation
implementation Spring.boot.web
implementation 'com.auth0:java-jwt:_'
implementation 'io.jsonwebtoken:jjwt-api:_'
implementation 'io.jsonwebtoken:jjwt-impl:_'
implementation 'io.jsonwebtoken:jjwt-jackson:_'
implementation 'com.amazonaws:aws-java-sdk-s3:_'
implementation 'org.apache.poi:poi:_'
implementation 'org.apache.poi:poi-ooxml:_'
implementation Spring.boot.data.mongodb
compileOnly 'org.projectlombok:lombok:_'
runtimeOnly 'com.mysql:mysql-connector-j:_'
runtimeOnly 'com.h2database:h2:_'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok:_'
annotationProcessor Spring.boot.configurationProcessor
testImplementation Spring.boot.test
testImplementation Spring.security.spring_security_test
}
tasks.named('test') {
useJUnitPlatform()
}