-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (42 loc) · 1.31 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
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'
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
}
}
}
tasks.named('test') {
useJUnitPlatform()
}