Maven skipping dependency files?

Try something like this: my-internal-site file:///${basedir} Then remove the system path argument. Also, are you sure the scope should be system?

From the question, it is not clear what you are trying to do. On one hand you mention I have 5 local jar files as dependent files and you have specified them with scope in pom.xml. On the other hand you mention running mvn install to install the dependencies.

You should avoid scope unless there is a compelling reason, especially for third-party dependencies (like commons-codec). Mvn install builds the specified project and installs the same in the local repository. It does not install dependencies.

You can use mvn install:install-file to install the dependencies to the local repository after downloading them separately. They do not get installed in ${basedir}. Do update your question suitably if the above does not help.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions