Coeur-Morny-Cono/build.gradle

24 lines
340 B
Groovy
Raw Normal View History

2021-10-07 20:50:59 +08:00
plugins {
id 'java'
}
group 'cc.sukazyo'
version '0.2.0'
2021-10-07 20:50:59 +08:00
repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.pengrad:java-telegram-bot-api:5.3.0'
2021-10-07 20:50:59 +08:00
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
2021-10-07 20:50:59 +08:00
}
test {
useJUnitPlatform()
}