-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
57 lines (50 loc) · 1.96 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.5'
}
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
repositories {
mavenCentral()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'org.springframework.boot:spring-boot-starter-quartz'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.0'
implementation 'com.oracle.database.jdbc:ojdbc8:21.3.0.0'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-collections4:4.1'
implementation 'commons-io:commons-io:2.6'
implementation 'commons-dbcp:commons-dbcp:1.4'
implementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation 'javax.mail:mail:1.4.3'
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper:9.0.68'
implementation 'com.amazonaws:aws-java-sdk-s3:1.12.261'
implementation 'javax.servlet:jstl:1.2'
implementation 'org.quartz-scheduler:quartz:2.3.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
group = 'com.singer'
description = 'Spring-WebServer-Oracle'
java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11
bootJar {
launchScript()
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}