diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..7d272eb --- /dev/null +++ b/build.gradle @@ -0,0 +1,46 @@ +/* + * This file was generated by the Gradle 'init' task. + * + * This generated file contains a sample Java Library project to get you started. + * For more details take a look at the Java Libraries chapter in the Gradle + * user guide available at https://docs.gradle.org/4.8.1/userguide/java_library_plugin.html + */ + + + +plugins { + // Apply the java-library plugin to add support for Java Library + id 'java-library' +} + +repositories { + mavenCentral() + + maven { + name 'm2-dv8tion' + url 'https://m2.dv8tion.net/releases' + } + flatDir { + dirs '../../Juliabot.git/build/libs' + } +} + +task copyDependencies(type: Copy) { + group 'build' + from configurations.implementation + into 'dependencies' +} + + +dependencies { + implementation 'net.dv8tion:JDA:4.3.0_293' + + implementation 'com.thedeanda:lorem:2.1' + + implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.22' + + implementation 'com.sedmelluq:lavaplayer:1.3.77' + + implementation name:'JuliabotAPI' + +}