I have root-like this
├── appointment
└── src
└── main
└── java
└── com
└── sendemail
├── MainAppointment.java
└── SendMail.java
All is working and compiled as expected by running via the IDE(IntelliJ). by running javac MainAppointment.java from other then the sendemail package the files are not found while running the javac MainAppointment.java command from the sendemail directory cannot find symbol error is returned
Any idea how to resolve this?