-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
34 lines (30 loc) · 1.35 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
plugins {
id 'org.springframework.boot' version '2.5.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.snowcattle'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
implementation group: 'dom4j', name: 'dom4j', version: '1.6.1'
implementation group: 'org.apache.poi', name: 'poi', version: '3.8'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '3.8'
implementation group: 'org.apache.poi', name: 'poi-ooxml-schemas', version: '3.8'
implementation group: 'org.apache.poi', name: 'poi-scratchpad', version: '3.8'
implementation group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '2.3.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
implementation group: 'com.alibaba', name: 'fastjson', version: '1.2.78'
implementation group: 'com.google.guava', name: 'guava', version: '30.1.1-jre'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: '2.5.4'
implementation group: 'com.github.jsqlparser', name: 'jsqlparser', version: '4.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}