-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (51 loc) · 2.1 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.0'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.java'
version = '0.0.1'
java {
sourceCompatibility = '21'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-freemarker:3.2.0'
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
implementation 'org.springframework.boot:spring-boot-starter-web'
// implementation 'org.springframework.boot:spring-boot-starter-log4j2'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.2.0'
implementation 'com.opencsv:opencsv:5.9'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.16.0'
implementation 'org.apache.pdfbox:pdfbox:3.0.1'
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
implementation 'org.apache.poi:poi:5.2.5'
implementation 'org.apache.poi:poi-ooxml:5.2.5'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.jayway.jsonpath:json-path:2.8.0'
implementation 'com.google.protobuf:protobuf-java:3.25.0'
implementation 'com.google.protobuf:protobuf-java-util:3.25.0'
implementation 'commons-fileupload:commons-fileupload:1.5'
implementation 'org.apache.derby:derby:10.17.1.0'
implementation 'org.json:json:20240303'
implementation('com.github.javafaker:javafaker:1.0.2') {
exclude group: 'org.yaml', module: 'snakeyaml'
}
implementation 'org.zalando:logbook-spring-boot-starter:3.9.0'
implementation 'net.logstash.logback:logstash-logback-encoder:8.0'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
compileOnly 'org.projectlombok:lombok:1.18.30'
// developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
configurations.all {
// exclude group: "org.springframework.boot", module:"spring-boot-starter-logging"
exclude group: "commons-logging", module: "commons-logging"
}
tasks.named('test') {
useJUnitPlatform()
}