34 lines
781 B
Groovy
34 lines
781 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 = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://jitpack.io'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.xerial:sqlite-jdbc:3.30.1'
|
|
implementation 'com.github.Kaaz:ConfigurationBuilder:0.4'
|
|
implementation group: 'org.javacord', name: 'javacord', version:'3.0.5'
|
|
implementation group: 'com.rethinkdb', name: 'rethinkdb-driver', version: '2.3.3'
|
|
implementation 'com.vdurmont:emoji-java:4.0.0'
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|
|
mainClassName = 'dev.salmonllama.fsbot.Main'
|