forked from LimmychAbbil/ProjectCrT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (20 loc) · 880 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
plugins {
id 'java'
}
group 'net.lim'
version '0.02g'
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.telegram', name: 'telegrambots', version: '5.3.0'
implementation group: 'org.telegram', name: 'telegrambotsextensions', version: '5.3.0'
compile group: 'org.projectlombok', name: 'lombok', version: '1.18.12'
compile group: 'org.glassfish.jersey.core', name: 'jersey-client', version: '2.33'
compile group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: '2.33'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
compile group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testCompile group: 'junit', name: 'junit', version: '4.12'
}