forked from VegaBobo/Bot3
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (24 loc) · 1016 Bytes
/
build.gradle
File metadata and controls
29 lines (24 loc) · 1016 Bytes
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
plugins {
id "com.github.johnrengelman.shadow" version "7.1.2"
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
mainClassName = 'com.vegazsdev.bobobot.Main'
group 'com.vegazsdev.bobobot'
version '1.7.0'
sourceCompatibility = 17
repositories {
gradlePluginPortal()
mavenCentral()
}
dependencies {
implementation group: 'org.telegram', name: 'telegrambots', version: '5.6.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.36.0.3'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
implementation group: 'com.jcraft', name: 'jsch', version: '0.1.55'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.5.9'
implementation group: 'com.squareup.okio', name: 'okio', version: '3.0.0'
}