我希望 maven 将依赖的 jar 存储在项目特定的lib文件夹中,而不是默认的MyUser/.m2/repository/中。并不是每个人在获得项目时都能访问互联网,并且复制全局本地存储库似乎不是一个理想的解决方案。
如何说服 maven 在本地、相对、项目特定的文件夹中存储和使用这些依赖项?
似乎我的问题是这个 Stackoverflow 问题的改写版本
我做了这样的事情:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${mvn-dependency-plugin.version}</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/${local-lib-dir}</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<build>
唯一的缺点是,eclipse maven 仍然引用本地存储库中的 jar。