需要示例settings.xml

时间:2010-11-17 03:41:18

标签: eclipse maven-2

有人可以提供示例settings.xml的链接吗? 我的问题是我有eclipse maven插件。这个日食是我从某个地方复制过来的,插件附带了它 现在settings.xml文件夹中没有像往常一样创建.m2。所以我需要一个示例settings.xml,以便maven插件在我的日食中工作。

注意:我正在使用eclipse Galileo 3.5

感谢。

1 个答案:

答案 0 :(得分:2)

m2eclipse FAQ中所述:

  

如何配置Maven本地存储库的代理和位置

     

Eclipse插件使用Maven的settings.xml代理,本地存储库位置和任何其他特定于环境的配置。这样我们就可以在命令行和IDE之间使用相同的设置。

     

settings.xml的默认位置位于 <user home>/.m2/settings.xml ,但您也可以指定全局设置的位置,即 <maven home>/conf/settings.xml < /强>

您可以在“Build a mixed Scala 2.8/Java application from scratch with Maven (Eclipse Settings)”的博客文章中查看最小settings.xml的内容:

<settings xmlns="http://maven.apache.org/POM/4.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <localRepository>
    C:/Documents and Settings/Administrator/.m2/repository
  </localRepository>
  <interactiveMode>true</interactiveMode>
  <usePluginRegistry>false</usePluginRegistry>
  <offline>false</offline>
</settings>

(更改“localRepository”路径以使其适应您的环境

maven settings.xml 的所有详细信息都在Maven Setting reference page