Whenever I try to run gradle tests, gradle has to create jar files.
The issue with this is, that I have defined a custom output directory within my build.gradle
:
jar {
archiveName = "CrystalShard-${project.name}.jar"
destinationDir = new File("${project.rootProject.projectDir.absolutePath}\\artifacts")
}
(Context: https://github.com/burdoto/CrystalShard/blob/tests/build.gradle#L46-L49)
This is my build log: https://travis-ci.com/CrystalShardDiscord/CrystalShard/builds/90609736
Maybe someone of y’all is able to help me because I am lost for ideas, as I require this custom output directory.