blob: d82dff6d44a06f3cdef964381ca00a80d8e75340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
plugins {
id 'java'
}
group = 'info.selflearner'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.pengrad:java-telegram-bot-api:7.11.0'
implementation group: 'net.sourceforge.tess4j', name: 'tess4j', version: '5.13.0'
implementation group: 'org.json', name: 'json', version: '20250107'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
|