I mean is there any difference between the maven you download and manually install/run from the one eclipse has embedded as an eclipse plugin? The reason why I ask is that, my project builds successfully in eclipse, but I get this annoying error when building from console mvn install
, here is the error
Reason: Cannot find parent: net.oauth:oauth-parent for pro core....
I can fix this by manually removing parent tags from oauth pom and one other pom .. and it will build successfully, is there something else I can do to fix this? what could be the problem with console? When the time to build a project comes it will be from console not from eclipse .. thank you
EDIT
Is there a way to say maven .. ok just ignore those errors and continue with the build, cause that is obviously what eclipse is doing since there is no parent-oauth-project
on the repository when the build succeeds with eclipse.