GOKULAM Jayaram wrote on Wednesday, March 02, 2005 8:23 AM: > Thanks for the support Arnaud. But still it did not work. > Though it downloaded the commons-codec jar file it again got > into my earlier problem, as stated below. > > Compiling shows error again. Should I set some classpath or > path from the command prompt?Please guide me on this. Thanks > in advance, Jayaram
[snip] > [javac] Compiling 282 source files to C:\Maven > 1.0.2\bin\target\classes\classes C:\Maven > 1.0.2\bin\target\classes\checkouts\petstore\src\waf\src\contro > ller\com\sun\j2ee\bluepr > ints\waf\controller\web\flow\handlers\ClientStateFlowHandler.j > ava:47: package org.apache.common s.codec.base64 does not > exist import org.apache.commons.codec.base64.Base64; [snip] Gosh, how difficult is it to look into a jar? Base64 is in package org.apache.commons.codec.binary. So you have to figure out, which version of this jar you'll need, it seems quite ancient. If a common-codec.jar is also delivered with the petshop, you may have a look into the manifest of it or use the maven.jar.override to use this specific one directly. - J�rg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
