We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running on mingw, you get the following error:
mingw
$ java -cp "lib/*:target" org.junit.runner.JUnitCore Error: Could not find or load main class org.junit.runner.JUnitCore
https://docs.oracle.com/javase/8/docs/technotes/tools/windows/classpath.html and https://docs.oracle.com/javase/8/docs/technotes/tools/unix/classpath.html say the path separator for the -cp argument is semi-colon (;) not colon (:) but travis seems happy enough with the full colon.
-cp
;
:
Need to test on a variety of OS before updating to semi-colon.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running on
mingw
, you get the following error:$ java -cp "lib/*:target" org.junit.runner.JUnitCore Error: Could not find or load main class org.junit.runner.JUnitCore
https://docs.oracle.com/javase/8/docs/technotes/tools/windows/classpath.html and https://docs.oracle.com/javase/8/docs/technotes/tools/unix/classpath.html say the path separator for the
-cp
argument is semi-colon (;
) not colon (:
) but travis seems happy enough with the full colon.Need to test on a variety of OS before updating to semi-colon.
The text was updated successfully, but these errors were encountered: