-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
42 lines (37 loc) · 2 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.1.8.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
}
group 'com.office'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "http://repository.aspose.com/repo/" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.apache.poi', name: 'poi', version: '4.1.0'
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.0'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
compile 'com.google.guava:guava:28.1-jre'
compile group: 'commons-io', name: 'commons-io', version: '2.4'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.1.10.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-websocket'
compile group: 'org.webjars', name: 'webjars-locator', version: '0.37'
compile group: 'org.webjars', name: 'sockjs-client', version: '1.0.2'
compile group: 'org.webjars', name: 'stomp-websocket', version: '2.3.3'
compile group: 'org.webjars', name: 'bootstrap', version: '4.3.1'
compile group: 'org.webjars', name: 'jquery', version: '3.4.1'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.5.Final'
compile group: 'com.vladmihalcea', name: 'hibernate-types-52', version: '2.4.3'
compile group: 'com.konghq', name: 'unirest-java', version: '2.3.17'
compile group: 'org.zalando', name: 'logbook-spring-boot-starter', version: '1.13.0'
compile group: 'org.zalando', name: 'logbook-spring-boot-starter', version: '1.13.0'
compile group: 'com.aspose', name: 'aspose-cells', version: '19.8'
testCompile group: 'org.springframework', name: 'spring-mock', version: '2.0.8'
testCompile group: 'org.springframework', name: 'spring-test', version: '5.1.9.RELEASE'
}