When I run javac on an ubuntu linux system I get a "package does not exist" error from the line
import org.voltdb.ProcInfo
From the answer below, I know that I need to add packages from "org/voltdb/ProcInfo" to my javac class path to resolve this error. Java Package Does Not Exist Error
But when I search for the system for such a directory structure I don't find it.
prompt$cd /
prompt$sudo find / -type d -path 'org/voltdb/ProcInfo' //returns no output
I downloaded VoltDB community edition 3.5 and am trying to compile and run a voltdb project. It seems unlike that Volt's .tar does not include the necessary java libraries -- but that seems to be what is going on. Am I understanding what is happening correctly or am I missing something? I have only working knowledge of Java and Linux.