discord-bot/build.gradle
2020-06-28 12:06:49 -04:00

35 lines
834 B
Groovy

/*
* Developed by Alek Gryczewski on 10/18/18 1:39 PM
* Last modified 9/25/18 7:33 PM
* Copyright (c) 2018. All rights reserved.
*/
plugins {
id 'application'
}
group 'dev.salmonllama'
version '1.1.11'
sourceCompatibility = 11
repositories {
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation 'org.xerial:sqlite-jdbc:3.30.1'
implementation 'com.github.Kaaz:ConfigurationBuilder:0.4'
implementation 'org.javacord:javacord:3.0.6'
implementation group: 'com.rethinkdb', name: 'rethinkdb-driver', version: '2.3.3' // set for removal
implementation 'com.vdurmont:emoji-java:4.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.4.0'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
mainClassName = 'dev.salmonllama.fsbot.Main'