Hi,
I imported the open source exchange api (for bitcoins) into eclipse (version oxygen)
It imported about 20 projects, I was able to run the project examples ok. I then try to create a jar file so I could run it outside of eclipse. I got the following error "Could not find main method from given lunch configuration"
For the lunch configuration i have cTest,
public class cStart2 {
public static void main(String[] args) {
System.out.println("hello");
}
}
The configuration does have main, how can i fix this?