我想使用 maven-install-plugin 将几个 jars 安装到我的本地 maven repo 中。我的 maven 3.2.1 安装使用这个插件的 2.4 版本,需要指定很多参数。我想使用需要较少参数的 2.5 版,如http://maven.apache.org/plugins/maven-install-plugin/usage.html中所述。如果我 mvn install:install-file
从具有以下内容的 pom.xml 文件的文件夹中运行,则它使用 2.5 版:
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
否则,它仍然使用旧插件。如何强制 Maven 使用 maven-install-plugin 2.5 版(如果我从任何文件夹运行 install-file)?
PS如何安装第三方源代码和 javadoc JAR?不包含答案。