-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (53 loc) · 1.93 KB
/
build.gradle
File metadata and controls
66 lines (53 loc) · 1.93 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
plugins {
id 'java-library'
id 'idea'
id 'maven-publish'
}
group = 'com.kingname'
version = '1.0.2'
java {
sourceCompatibility = '11'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.google.guava:guava:31.1-jre'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'co.elastic.clients:elasticsearch-java:8.8.2'
implementation 'org.elasticsearch.client:elasticsearch-rest-client:8.8.2'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
// Logging framework
implementation 'org.slf4j:slf4j-api:2.0.7'
implementation 'ch.qos.logback:logback-classic:1.4.7'
// Resilience4j for Circuit Breaker pattern (Java 11 compatible version)
implementation 'io.github.resilience4j:resilience4j-circuitbreaker:1.7.1'
implementation 'io.github.resilience4j:resilience4j-retry:1.7.1'
implementation 'io.github.resilience4j:resilience4j-timelimiter:1.7.1'
// Micrometer for metrics collection (Java 11 compatible version)
implementation 'io.micrometer:micrometer-core:1.9.14'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:3.24.2'
// 테스트를 위한 Lombok 설정
testCompileOnly 'org.projectlombok:lombok:1.18.10'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.10'
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'com.github.shing100'
artifactId = 'embeddingStoreManager'
version = '1.0.2'
from components.java
}
}
}
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
test {
useJUnit()
}