I was able to run the project:
- File->Import…->Existing Projects into Workspace
- Project has invalid settings – source folders are wrong. To fix that, right click on the
project->Properties->Java Build Path->Source-> add src, remove
src/main and src/test - To run, right click on Main class->Run As->Java Application
- To export to jar, right click on project->Export…->Runnable JAR
file
To provide keystore name, change Main class:
KeystoreSource source = new KeystoreSource();
source.setKeystoreName("path_to_file_relative_to_jar_or_eclipse_project");
6
solved Need help compiling this java source [closed]