Similar-Images-Bot/build.gradle

35 lines
848 B
Groovy
Raw Normal View History

2020-09-27 13:08:23 +03:00
plugins {
2020-09-29 00:16:58 +03:00
id "com.github.johnrengelman.shadow" version "6.0.0"
2020-09-27 13:08:23 +03:00
id 'java'
id 'application'
}
sourceCompatibility = 11
targetCompatibility = 11
mainClassName = 'com.annimon.similarimagesbot.Main'
group 'com.annimon'
2022-01-08 11:22:03 +02:00
version '1.0.3'
2020-09-27 13:08:23 +03:00
repositories {
jcenter()
2022-01-08 11:22:03 +02:00
mavenCentral()
2020-09-27 13:08:23 +03:00
}
dependencies {
2022-01-08 11:22:03 +02:00
implementation 'com.github.pengrad:java-telegram-bot-api:5.5.0'
2020-09-27 13:08:23 +03:00
implementation 'com.github.kilianB:JImageHash:3.0.0'
implementation 'com.h2database:h2:1.4.200'
2022-01-08 11:22:03 +02:00
implementation 'org.apache.logging.log4j:log4j-core:2.17.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.1'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.13.1'
2020-10-17 23:52:28 +03:00
2022-01-08 11:22:03 +02:00
testCompile 'junit:junit:4.13.2'
2020-09-27 13:08:23 +03:00
}
2020-09-29 00:16:58 +03:00
shadowJar {
mergeServiceFiles()
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
}