initial update
This commit is contained in:
44
build.gradle
44
build.gradle
@ -1,39 +1,39 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id'application'
|
id'application'
|
||||||
id'com.github.johnrengelman.shadow' version '4.0.4'
|
id'com.github.johnrengelman.shadow' version '7.1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
version '0.10'
|
application.mainClass = "core.Main"
|
||||||
|
group 'de.ocame'
|
||||||
|
version '0.20'
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
//def jdaVersion = '3.8.3_460'
|
//def jdaVersion = '3.8.3_460'
|
||||||
def jdaVersion = '5.0.0-alpha.20'
|
def jdaVersion = '5.2.3'
|
||||||
|
|
||||||
|
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = '17'
|
||||||
|
targetCompatibility = '17'
|
||||||
|
|
||||||
mainClassName = 'core.Main'
|
tasks.withType(JavaCompile) {
|
||||||
|
options.encoding = 'UTF-8'
|
||||||
|
|
||||||
repositories {
|
|
||||||
jcenter()
|
|
||||||
// Required for OkHTTP 3.13.0-SNAPSHOT
|
|
||||||
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile "net.dv8tion:JDA:$jdaVersion"
|
// compile "org.slf4j:slf4j-simple:1.7.36"
|
||||||
compile "org.slf4j:slf4j-simple:1.7.36"
|
|
||||||
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.6'
|
|
||||||
compile "org.json:json:20141113"
|
implementation "net.dv8tion:JDA:$jdaVersion"
|
||||||
|
implementation 'org.jsoup:jsoup:1.15.3'
|
||||||
|
implementation 'org.json:json:20231013'
|
||||||
|
implementation 'com.mysql:mysql-connector-j:9.2.0'
|
||||||
|
|
||||||
|
implementation "ch.qos.logback:logback-classic:1.5.6"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
|
||||||
jcenter()
|
|
||||||
}
|
|
||||||
|
|
||||||
compileJava.options.encoding = 'UTF-8'
|
|
||||||
|
|
||||||
//mainClassName = 'core.Main'
|
|
||||||
|
|||||||
5
gradle/wrapper/gradle-wrapper.properties
vendored
5
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,7 @@
|
|||||||
#Thu Nov 29 23:00:22 CET 2018
|
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
|
||||||
|
networkTimeout=10000
|
||||||
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip
|
|
||||||
|
|||||||
@ -1,2 +0,0 @@
|
|||||||
rootProject.name = 'DiscordBot'
|
|
||||||
|
|
||||||
@ -138,7 +138,7 @@ public class dice extends ListenerAdapter {
|
|||||||
|
|
||||||
event.getChannel().sendMessageEmbeds(outputBox.build()).queue();
|
event.getChannel().sendMessageEmbeds(outputBox.build()).queue();
|
||||||
|
|
||||||
System.runFinalization();
|
//System.runFinalization();
|
||||||
System.gc();
|
System.gc();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,9 +13,9 @@ public class Main {
|
|||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
||||||
// Insert your bot's token here
|
// Insert your bot's token here
|
||||||
String token = "NTQ2ODk5MzYwMDEzODc3MjU4.D0u8wA.VfA2vJzundVhCl1-ibDiBaKuA8w";
|
//String token = "NTQ2ODk5MzYwMDEzODc3MjU4.D0u8wA.VfA2vJzundVhCl1-ibDiBaKuA8w";
|
||||||
// iro
|
// iro
|
||||||
//String token = "NTQ2NzEwODUwOTIxMjk5OTc5.D0sL6A.1fUd5iBr3eo2tbPXofEqyumDm6w";
|
String token = "NTQ2NzEwODUwOTIxMjk5OTc5.D0sL6A.1fUd5iBr3eo2tbPXofEqyumDm6w";
|
||||||
|
|
||||||
JDA jda = JDABuilder.createDefault(token)
|
JDA jda = JDABuilder.createDefault(token)
|
||||||
.enableIntents(GatewayIntent.MESSAGE_CONTENT)
|
.enableIntents(GatewayIntent.MESSAGE_CONTENT)
|
||||||
|
|||||||
@ -3,7 +3,7 @@ package core;
|
|||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
|
|
||||||
public class Config {
|
public class config {
|
||||||
public String token;
|
public String token;
|
||||||
public String GameWatching = "Den NinjaSäuen zu";
|
public String GameWatching = "Den NinjaSäuen zu";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user