On Wed, Feb 20, 2008 at 10:48 PM, sunrays9 <[EMAIL PROTECTED]> wrote:
> because of InvalidArgumentException class is available in abi.jar > To avoid this error i should provide this jar file at the compile time for > the maven. > > so now my question is, How should i provide this jar to maven for compiling. > Please respond me. You'll need to put the jar into a repository, and then declare a dependency on it. Here's more than you wanted to know about dependencies... http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html If that jar is available in the central repository you're all set. If not, you can install it into your local repository, which you can read about here: http://maven.apache.org/plugins/maven-install-plugin/usage.html (If you're working with a team, the next step would be to set up a shared remote repository.) -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
