I'm currently using gradle and the processing library to make some simple 2D graphics for a java project.
I want to be able to distribute the project when I'm done, and I have been trying to use "gradle distZip" to do this. This creates a zip file, which when unzipped contains a .bat file. However, when I run this script, nothing happens.
I have also tried making a .jar file and using "java -jar FILENAME.jar" however, this results in the error
Error: Could not find or load main class App
Is there something I need to add to my build.gradle file to be able to run a file that uses processing or is there some other way I can bundle my project? Any help is greatly appreciated!