I'm building with Maven and getting a seemingly innocuous "symbol not found" error - problem is I've verified that the build is correct with all the lower level Java tools I know and it looks airtight. I have built with this command line:
javac -d /home/dan/EmailClient/Initial-Client/target/classes -classpath <many jars>:
/thepath/Common/1.0-SNAPSHOT/Common-1.0-SNAPSHOT.jar /* I need this one */
-sourcepath /thepath/src/main/java: <the files>
-s /thepath/target/generated-sources/annotations
-g -nowarn -target 1.7 -source 1.7 -encoding UTF-8
Get this error:
Launcher.java:119: error: cannot find symbol
return Promise.onPool(getterPool).continueWith(new Transformer<Void, Promise<List<Void>>>() {
(with error pointing on onPool)
And have run jar xf Common-1.0-SNAPSHOT.jar (cding by copying and pasting the directory in the command line), then
javap Promise.class
which shows
public static me.unroll.functional.Promise<java.lang.Void> onPool(java.util.concurrent.Executor);
So this looks airtight to me - what debug step am I missing?
Furthermore this builds fine on a separate machine and runs fine from Eclipse with all relevant source files opened, just not from my actual build machine.