Slackbot
09/01/2023, 6:52 PMJackie G
09/01/2023, 6:54 PMVampire
09/01/2023, 6:55 PMsrc/main/java and src/main/resources?Vampire
09/01/2023, 6:56 PMVampire
09/01/2023, 6:57 PMmain/java and main/resources, you probably configured the srcDir for java source directory set of the main source set and the same you sould set the srcDir for the resources source directory set of the main source set.Jackie G
09/01/2023, 7:01 PMsrc/main/java and src/main/resources but it doesn't seem to be exporting the save file.Jackie G
09/01/2023, 7:01 PMplugins {
id 'application'
id "com.github.johnrengelman.shadow" version "6.1.0"
}
application.mainClassName = 'me.jackie.Main'
sourceCompatibility = 1.8
group 'org.example'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation "net.dv8tion:JDA:5.0.0-beta.2"
implementation 'org.json:json:20230227'
implementation 'com.google.code.gson:gson:2.10.1'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
sourceCompatibility = "1.8"
}Jackie G
09/01/2023, 7:01 PMbuild.gradleVampire
09/01/2023, 7:02 PMJackie G
09/01/2023, 7:27 PM