34 lines
728 B
Groovy
34 lines
728 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 '2.0.1'
|
|
|
|
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 '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'
|