JuLIAnatheme/build.gradle
Mysaa a63ee6d908 Création d'un espace de travail fonctionnel
Bien que le plugin ait été désactivé en grande partie.
2021-07-10 20:31:09 +02:00

57 lines
1.2 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 group: 'org.reflections', name: 'reflections', version: '0.9.11'
implementation name:'JuliabotAPI'
//implementation name:'JuLSoundbox'
}