Files
Sokobot/build.gradle
T
PocketMars f57b271bbf Custom player emojis
Allow player to use any emoji in place of the player by using !play [valid emoji] when starting a game
2020-06-30 11:35:03 -05:00

22 lines
343 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'
compile 'com.vdurmont:emoji-java:5.1.1'
}