-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
116 lines (86 loc) · 3.37 KB
/
build.gradle
File metadata and controls
116 lines (86 loc) · 3.37 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.1'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'com.balsamic'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// springBoot web, JPA
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
testImplementation 'org.springframework:spring-test' //2024.11.22 : SUH : MockMultipartFile 사용
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
// PostgreSQL
runtimeOnly 'org.postgresql:postgresql'
// cache
implementation 'org.springframework.boot:spring-boot-starter-cache'
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
// Http
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'org.jsoup:jsoup:1.15.3'
// JavaNetCookieJar
implementation 'com.squareup.okhttp3:okhttp-urlconnection:4.9.3'
// HttpLoggingInterceptor
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.3'
// ftp
implementation 'commons-net:commons-net:3.8.0'
// Apache Commons Pool2
implementation 'org.apache.commons:commons-pool2:2.11.1'
// Thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
// Spring Boot DevTools
developmentOnly 'org.springframework.boot:spring-boot-devtools'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.redisson:redisson-spring-boot-starter:3.20.0'
// WebSocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
// Stomp
implementation 'org.webjars:stomp-websocket:2.3.4'
// Socket JS
implementation 'org.webjars:sockjs-client:1.5.1'
// Docker Java API 관련 의존성들
implementation 'com.github.docker-java:docker-java:3.3.0'
implementation 'com.github.docker-java:docker-java-transport-httpclient5:3.3.0'
implementation 'com.github.docker-java:docker-java-transport-okhttp:3.3.0'
implementation 'com.github.docker-java:docker-java-transport:3.3.0'
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.28'
annotationProcessor 'org.projectlombok:lombok:1.18.28'
// Apache Commons Exec
implementation 'org.apache.commons:commons-exec:1.3'
// Apache Commons IO
implementation 'commons-io:commons-io:2.11.0'
// Apache Commons Lang3
implementation 'org.apache.commons:commons-lang3:3.12.0'
// SSH
implementation 'com.jcraft:jsch:0.1.55'
// Jackson (JSON 파싱용)
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
// Hibernate Validator
implementation 'org.hibernate.validator:hibernate-validator:8.0.1.Final'
implementation 'jakarta.validation:jakarta.validation-api:3.0.2'
// Spring Security
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}