maven从pom中的settings.xml读取凭据

时间:2013-09-27 07:57:24

标签: maven pom.xml

是否可以从pom.xml中的settings.xml读取服务器凭据?我想按照here所述下载文件,但要避免将凭据放在版本控制中。

提前致谢!

2 个答案:

答案 0 :(得分:1)

我认为您正在寻找的是基于档案的属性,如下所示:

<profile>
    <id>jira</id>
    <properties>
        <jiraUser>user</jiraUser>
        <jiraPassword>password</jiraPassword>
    </properties>
</profile>

您可以在POM中使用${jiraUser}{jiraPassword}来引用这些内容。请务必在settings.xml

中激活个人资料

答案 1 :(得分:0)

你对pom.xml中的settings.xml是什么意思(抱歉管理员在Answers中发布这个而不是评论,因为我无法添加评论我在答案中这样做)