-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (29 loc) · 1.06 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
plugins {
id 'application'
id 'java'
}
sourceCompatibility = '11'
targetCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.beust:jcommander:1.81'
implementation 'org.apache.logging.log4j:log4j-api:2.14.1'
implementation 'org.apache.logging.log4j:log4j-core:2.14.1'
implementation 'org.apache.lucene:lucene-core:8.7.0'
implementation 'org.apache.lucene:lucene-analyzers-common:8.7.0'
implementation 'org.apache.lucene:lucene-backward-codecs:8.7.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.3'
implementation 'software.amazon.awssdk:s3:2.25.16'
}
application {
mainClassName = 'com.rfs.ReindexFromSnapshot'
}
task demoPrintOutSnapshot(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'com.rfs.DemoPrintOutSnapshot'
}