-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
82 lines (69 loc) · 2.51 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
77
78
79
80
81
82
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.5'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'org.vsa'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-batch'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'com.nimbusds:nimbus-jose-jwt:9.37.2'
implementation 'io.netty:netty-all:4.1.75.Final'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
//actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// SpringDoc OpenAPI
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0' // 버전 조정
// Swagger Core 버전을 명시적으로 추가
implementation 'io.swagger.core.v3:swagger-core:2.2.10'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.1'
// org.json.simple 사용을 위해 추가
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
// SpringBatch 사용을 위해 추가
implementation 'org.springframework.boot:spring-boot-starter-batch'
implementation 'org.springframework:spring-context-support'
//spring security
implementation 'org.springframework.boot:spring-boot-starter-security'
//jwt
implementation 'io.jsonwebtoken:jjwt:0.9.1'
//구글 이메일
implementation 'org.springframework.boot:spring-boot-starter-mail'
//pdf box
implementation 'org.apache.pdfbox:pdfbox:2.0.32'
//Multipart file
implementation("software.amazon.awssdk:bom:2.21.0")
implementation("software.amazon.awssdk:s3:2.21.0")
// Tesseract OCR Library for Java
implementation 'net.sourceforge.tess4j:tess4j:5.6.0'
//ZXing(Zebra Crossing)
implementation 'com.google.zxing:core:3.5.2'
implementation 'com.google.zxing:javase:3.5.2'
// jackson
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'org.springframework:spring-web'
}
tasks.named('test') {
useJUnitPlatform()
}