This commit is contained in:
2021-04-02 00:46:14 +02:00
parent 167d38fe26
commit 8139716a2c
32 changed files with 1655 additions and 0 deletions

53
build.gradle Normal file
View File

@@ -0,0 +1,53 @@
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* User Manual available at https://docs.gradle.org/5.6/userguide/tutorial_java_projects.html
*/
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building a CLI application
id 'application'
// Shadow plugin to make uberJars
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
// This dependency is used by the application.//
implementation 'com.google.guava:guava:28.0-jre'
//implementation 'org.slf4j:slf4j-log4j12:2.0.0-alpha0'
implementation 'org.slf4j:slf4j-simple:2.0.0-alpha0'
implementation 'net.lingala.zip4j:zip4j:2.5.2'
implementation 'club.minnced:opus-java:1.0.4'
implementation 'ws.schild:jave-all-deps:2.7.3'
implementation 'org.apache.commons:commons-lang3:3.0'
implementation 'com.sedmelluq:lavaplayer:1.3.67'
implementation 'net.dv8tion:JDA:4.2.0_227'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
application {
// Define the main class for the application
mainClassName = 'fr.Skydust.JdrBot.JdrBot'
}
jar {
manifest {
attributes('Manifest-Version': '1.0', 'Main-Class': 'fr.Skydust.JdrBot.JdrBot');
}
}