-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
60 lines (52 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
plugins {
id 'java'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
group = 'eu.searchlab'
version = '0.0.1-SNAPSHOT'
description = "Searchlab"
archivesBaseName = 'searchlab'
mainClassName = 'eu.searchlab.Searchlab'
sourceSets.main.java.srcDirs = ['src']
applicationDefaultJvmArgs = ['-Xmx800m']
java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11
jar {
manifest {
attributes(
"Implementation-Title": description,
"Implementation-Version": version,
"Main-Class": mainClassName)
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
shadowJar {
zip64 true
exclude 'data'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.elasticsearch.client:transport:7.17.7'
implementation 'io.undertow:undertow-core:2.3.0.Final'
implementation 'tech.tablesaw:tablesaw-jsplot:0.43.+'
implementation 'tech.tablesaw:tablesaw-json:0.43.+'
implementation 'tech.tablesaw:tablesaw-core:0.43.+'
implementation 'com.github.jknack:handlebars:4.3.+'
implementation 'com.rabbitmq:amqp-client:5.14.+'
implementation 'org.slf4j:log4j-over-slf4j:2.0.+'
implementation 'org.slf4j:slf4j-jdk14:2.0.+'
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.19.+'
implementation 'io.minio:minio:8.4.+'
implementation 'com.amazonaws:aws-java-sdk-s3:1.12.+'
implementation 'io.findify:s3mock_2.13:0.2.+'
implementation 'oauth.signpost:signpost-core:2.1.+'
implementation 'org.twitter4j:twitter4j-core:4.0.7'
}