In the dev/proj/app/test.java file I have:
package proj.app;
...
import lib.sec.x;
...
In the /classes/proj/lib/sec I have x.class file.
When I try to compile java:
javac -classpath "/classes/proj/*" test.java
I got this error message:
package lib.sec does not exist
How to reference x.class file within classpath?