When trying to build from the ODE 1.x branch with latest code, I'm
getting the following error:
/home/dcarver/Work/ode-1.x/APACHE_ODE_1.X/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/MockBpelServer.java:55:
package org.tranql.connector.derby does not exist
import org.tranql.connector.derby.EmbeddedLocalMCF;
^
/home/dcarver/Work/ode-1.x/APACHE_ODE_1.X/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/MockBpelServer.java:207:
cannot find symbol
symbol : class EmbeddedLocalMCF
location: class org.apache.ode.bpel.runtime.MockBpelServer
EmbeddedLocalMCF mcf = new
org.tranql.connector.derby.EmbeddedLocalMCF();
^
/home/dcarver/Work/ode-1.x/APACHE_ODE_1.X/bpel-runtime/src/test/java/org/apache/ode/bpel/runtime/MockBpelServer.java:207:
package org.tranql.connector.derby does not exist
EmbeddedLocalMCF mcf = new
org.tranql.connector.derby.EmbeddedLocalMCF();
^
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
3 errors
Buildr aborted!
Failed to compile, see errors above
I checked the Rakefile, and the necessary TRANQL dependency is there.
I had a similar issue with the dao-hibernate, but that was missing a
DERBY dependency in the Rakefile. Adding that fixed that particular
issue, but not sure why this isn't working for the bpel-runtime
project's tests compile.
Dave