55 lines
1.1 KiB
Groovy
55 lines
1.1 KiB
Groovy
/*
|
|
* 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'
|
|
dirs '../Jul\'Anathème.git/build/libs'
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'src'
|
|
}
|
|
}
|
|
}
|
|
|
|
task copyDependencies(type: Copy) {
|
|
group 'build'
|
|
from configurations.default
|
|
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 name:'JuliabotAPI'
|
|
//implementation name:'JuLSoundbox'
|
|
|
|
}
|