[Solved] Need help compiling this java source [closed]


I was able to run the project:

  1. File->Import…->Existing Projects into Workspace
  2. 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
  3. To run, right click on Main class->Run As->Java Application
  4. 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]