如何将-s settings.xml作为param提供到pom.xml中

时间:2016-10-31 10:42:12

标签: java maven maven-3 pom.xml

我需要的是,当我运行pom.xml时,在mvn test制作个人资料,它实际上会触发mvn clean install -s settings.xml, 此settings.xml位于项目目录root中,因此它是自定义的,而不是.m2 / rep默认值。 这是我在pom文件中的尝试(遵循此tut https://www.tutorialspoint.com/maven/maven_build_profiles.htm):

    ...
    <profile>
        <id>test</id>
        <activation>
            <property>
                <name>-s</name>
                <value>settings.xml</value>
            </property>
        </activation>
    </profile>
     ...

但它没有用,有什么建议吗?

0 个答案:

没有答案