如何在settings.xml中定义maven系统属性?

时间:2016-05-18 21:12:38

标签: maven

我跟随advice from the mvn project使用多个工件线程进行并行工件解析。这个命令似乎给了我想要的结果。

mvn -Dmaven.artifact.threads=10 dependency:resolve-plugins

这个settings.xml会在每次调用mvn时自动设置maven.artifact.threads吗?

<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
    <profiles>
        <profile>
            <id>moreDependencyThreads</id>
            <activation>
                <property>
                    <name>maven.artifact.threads</name>
                    <value>10</value>
                </property>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
    </profiles>

    <activeProfiles>
        <activeProfile>moreDependencyThreads</activeProfile>
    </activeProfiles>
</settings>

2 个答案:

答案 0 :(得分:2)

您可以在settings.xml文件中设置此属性,方法如下:

<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
    <profiles>
        <profile>
            <id>moreDependencyThreads</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <maven.artifact.threads>10</maven.artifact.threads>
            </properties>
        </profile>
    </profiles>

    <activeProfiles>
        <activeProfile>moreDependencyThreads</activeProfile>
    </activeProfiles>
</settings>

答案 1 :(得分:1)

正如教程中指出的那样,您可以通过以下方式使其永久化:

export MAVEN_OPTS=-Dmaven.artifact.threads=10

如果你打电话说它对于那个会话来说是永久性的,那么如果你将tis添加到你的〜/ .bash_profile中,它对于那个用户来说是永久性的。现在,每次调用maven都会使用这些选项。