-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
35 lines (29 loc) · 929 Bytes
/
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
plugins {
id "com.github.johnrengelman.shadow" version "8.1.1"
id 'java'
id 'application'
}
sourceCompatibility = 11
targetCompatibility = 11
mainClassName = 'com.annimon.similarimagesbot.Main'
group 'com.annimon'
version '1.0.4'
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation 'com.github.pengrad:java-telegram-bot-api:6.9.1'
implementation 'com.github.kilianB:JImageHash:3.0.0'
implementation 'com.h2database:h2:1.4.200'
implementation 'org.apache.logging.log4j:log4j-core:2.17.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.3'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.15.3'
testImplementation platform("org.junit:junit-bom:5.9.2")
testImplementation 'org.junit.jupiter:junit-jupiter'
}
shadowJar {
mergeServiceFiles()
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
}