I have an application whose dependencies are being handled by maven.I need to know, how can i handle the dependencies which are not present in the remote repository. I dont want to use a local repository. Need help.
feedback
|
|
I can see a few solutions :
| |||
|
feedback
|
|
When you say
I assume you mean repositories not present in maven central (the default repository). If so, as Stephen suggested, you would want to add a repositories section in your pom with a reference to other repositories which has the dependencies. If there are no remote repositories which has your dependencies and you do not want to install them locally to your local repository, then maven will automatically handle this situation - it will given an error and fail to build. | |||
|
feedback
|
|
By default maven-compiler-plugin uses java 1.3 for compilation. You would need to configure it to use jdk5/jdk6. Add following to POM xml.
| |||
|
feedback
|
|
If you don't want to use a local repository then perhaps you could declare them with a system scope. Documented here Example:
I would really recommend using a local repository. Very easy to setup and install Nexus. The system scope is really designed to include extensions to the JVM. | |||
|
feedback
|