【发布时间】:2012-11-09 23:52:36
【问题描述】:
由于一些限制,我需要一个完全离线的 maven 存储库。根据 http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException ,仅搜索 <pluginRepositories> 的插件。所以我想知道如何配置 maven 在本地文件系统中查找插件。我尝试在设置<url> 时使用“file://”前缀,但它不起作用。
DEBUG] Verifying availability of /home/dsun/.m2/repository/org/apache/karaf/tooling/features-maven-plugin/2.3.0/features-maven-plugin-2.3.0.jar from [central (http://repo1.maven.org/maven2, releases=true, snapshots=false, managed=false)]
[ERROR] Plugin org.apache.karaf.tooling:features-maven-plugin:2.3.0 or one of its dependencies could not be resolved: The repository system is offline but the artifact org.apache.karaf.tooling:features-maven-plugin:jar:2.3.0 is not available in the local repository. -> [Help 1]
org.apache.maven.plugin.PluginResolutionException: Plugin org.apache.karaf.tooling:features-maven-plugin:2.3.0 or one of its dependencies could not be resolved: The repository system is offline but the artifact org.apache.karaf.tooling:features-maven-plugin:jar:2.3.0 is not available in the local repository.
dsun@localhost:> ls /home/dsun/.m2/repository/org/apache/karaf/tooling/features-maven-plugin/2.3.0/features-maven-plugin-2.3.0.jar
/home/dsun/.m2/repository/org/apache/karaf/tooling/features-maven-plugin/2.3.0/features-maven-plugin-2.3.0.jar
settings.xml
<settings>
<offline>true</offline>
<profiles>
<profile>
<id>local</id>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>file://${env.HOME}/.m2/repository</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>local</activeProfile>
</activeProfiles>
<localRepository>${env.HOME}/.m2/repository</localRepository>
【问题讨论】:
-
我不确定,但也许这篇文章会对你有所帮助:stackoverflow.com/questions/5141211/…
-
您的配置无法正常工作,因为您将源存储库定义为与目标存储库 (.m2/repository) 相同。您需要有一个初始引导带从哪里开始,并且在所有构建都工作之后,您可以进行设置。
-
嗨khmarbaise,你能详细解释一下吗?你是什么意思“源存储库”?所需的插件已经在我的本地存储库中。我试图删除 settings.xml 中除了
之外的所有行,它也不起作用。
标签: java maven build-automation maven-3