-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
70 lines (55 loc) · 1.92 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
plugins {
id 'java'
id 'idea'
id 'org.springframework.boot' version '2.5.1'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'ru.vyarus.quality' version '4.6.0'
}
group = 'me.becycled'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
compileJava.options.encoding = 'UTF-8'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
jvmArgs = ["-Djavax.xml.accessExternalDTD=all"]
}
bootJar {
archiveName = 'service.jar'
}
bootRun {
jvmArgs = ["-Djavax.xml.accessExternalDTD=all"]
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure:2.1.0.RELEASE'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4'
implementation 'org.postgresql:postgresql'
implementation 'org.apache.commons:commons-lang3:3.9'
implementation 'commons-io:commons-io:2.6'
implementation 'com.google.code.findbugs:annotations:3.0.1'
implementation 'org.imgscalr:imgscalr-lib:4.2'
implementation 'org.apache.httpcomponents:httpclient:4.5.11'
implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'org.passay:passay:1.6.1'
implementation 'org.freemarker:freemarker:2.3.31'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.testcontainers:postgresql:1.15.3'
}