-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
76 lines (60 loc) · 2.33 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
71
72
73
74
75
76
plugins {
id 'org.springframework.boot' version '2.4.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.encircle360.oss.docsrabbit'
version = '0.0.4-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_14
targetCompatibility = JavaVersion.VERSION_14
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// templating & rendering
implementation 'com.github.jhonnymertz:java-wkhtmltopdf-wrapper:1.1.13-RELEASE'
implementation 'no.api.freemarker:freemarker-java8:1.3.0'
// XLS
implementation 'org.jxls:jxls:2.10.0-rc1'
implementation 'org.jxls:jxls-poi:2.10.0-rc1'
// OCR
implementation 'org.apache.tika:tika-parsers:1.26'
implementation 'com.levigo.jbig2:levigo-jbig2-imageio:2.0'
implementation 'com.github.jai-imageio:jai-imageio-core:1.4.0'
// spring-boot-starter
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// openAPI specs
implementation 'org.springdoc:springdoc-openapi-ui:1.5.8'
// spring boot stuff
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
// mapstruct
compile 'org.mapstruct:mapstruct:1.3.1.Final'
testAnnotationProcessor "org.mapstruct:mapstruct-processor:1.3.1.Final"
// lombok
compileOnly 'org.projectlombok:lombok'
// testing
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'de.flapdoodle.embed:de.flapdoodle.embed.mongo:2.2.0'
// annotation processing | order must be maintained!
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.3.1.Final'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
// thumbnails
implementation group: 'net.coobird', name: 'thumbnailator', version: '0.4.14'
}
test {
useJUnitPlatform()
}