mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono.git
synced 2024-11-22 11:14:55 +08:00
24 lines
340 B
Groovy
24 lines
340 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'cc.sukazyo'
|
|
version '0.1.1'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.github.pengrad:java-telegram-bot-api:5.3.0'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|