mirror of
https://github.com/opelly27/Sokobot.git
synced 2026-05-20 05:17:39 +00:00
21 lines
299 B
Groovy
21 lines
299 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
|
}
|
|
|
|
group 'com.polymars'
|
|
version '1.0'
|
|
|
|
mainClassName = "Bot"
|
|
sourceCompatibility = 1.8;
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'net.dv8tion:JDA:4.1.1_162'
|
|
}
|