-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
138 lines (102 loc) · 3.95 KB
/
build.gradle
File metadata and controls
138 lines (102 loc) · 3.95 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'jombi'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
// Suh-Nexus 추가
maven {
url "http://suh-project.synology.me:9999/repository/maven-releases/"
allowInsecureProtocol = true
}
}
dependencies {
// WebDriverManager
implementation "io.github.bonigarcia:webdrivermanager:5.5.3"
// Elasticsearch
implementation 'org.springframework.boot:spring-boot-starter-data-elasticsearch'
// Spring Web
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// JUnit
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// jwt (11버전으로 변경)
// implementation 'io.jsonwebtoken:jjwt-api:0.12.3'
// implementation 'io.jsonwebtoken:jjwt-impl:0.12.3'
// implementation 'io.jsonwebtoken:jjwt-jackson:0.12.3'
implementation 'io.jsonwebtoken:jjwt-api:0.11.0'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.0'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.0'
// Security
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
// Dev Tool
developmentOnly 'org.springframework.boot:spring-boot-devtools'
// PostgreSQL
implementation 'org.hibernate:hibernate-spatial:6.6.4.Final'
runtimeOnly 'org.postgresql:postgresql'
// WebFlux
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.3'
// jsoup
implementation 'org.jsoup:jsoup:1.15.4'
// OkHttp
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
// JavaNetCookieJar
implementation 'com.squareup.okhttp3:okhttp-urlconnection:4.9.3'
// Faker
implementation ('com.github.javafaker:javafaker:1.0.2') {exclude group: 'org.yaml', module: 'snakeyaml'}
implementation 'org.yaml:snakeyaml:2.2' // 호환 버전
implementation 'org.hibernate.validator:hibernate-validator:8.0.0.Final'
// Reflection
implementation("org.reflections:reflections:0.10.2")
// SMB
implementation 'org.springframework.integration:spring-integration-smb:6.4.2'
// mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
// jakarta.mail
implementation 'com.sun.mail:jakarta.mail:2.0.1'
// json
implementation 'com.google.code.gson:gson:2.10.1'
// Thymleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0'
//validation
implementation 'commons-validator:commons-validator:1.7'
// Selenium
implementation 'org.seleniumhq.selenium:selenium-java'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
implementation("org.seleniumhq.selenium:selenium-devtools-v136:4.33.0")
// Suh-Random-Engine
implementation 'me.suhsaechan:suh-random-engine:1.0.2'
// Suh-Logger
implementation 'me.suhsaechan:suh-logger:1.0.3'
implementation "io.netty:netty-resolver-dns-native-macos:4.1.94.Final:osx-x86_64"
implementation "io.netty:netty-resolver-dns-native-macos:4.1.94.Final:osx-aarch_64"
}
tasks.named('test') {
useJUnitPlatform()
}