13
  1. 有没有办法暂停 Maven 执行流程以提供命令提示符,以便用户可以输入文本。
  2. 然后我希望将提供的文本存储在 Maven 属性中。
  3. 如果可以屏蔽用户输入,那将是一个奖励。

这对于避免在 pom.xml 中存储密码非常有用。

非常感谢

4

2 回答 2

12

您可以使用maven-antrun-plugin捕获用户输入。以下示例显示如何询问当前用户新的项目版本。

    <profile>
        <id>change-version</id>
        <build>
            <defaultGoal>validate</defaultGoal>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-antrun-plugin</artifactId>
                    <version>1.7</version>
                    <executions>
                        <execution>
                            <id>catch-new-version</id>
                            <goals>
                                <goal>run</goal>
                            </goals>
                            <phase>validate</phase>
                            <configuration>
                                <target>
                                    <!-- == catch new version in a prompt == -->
                                    <input
                                        message="Please enter the new SNAPSHOT version (current is '${project.version}'): "
                                        addproperty="new-user-version" />
                                </target>
                                <exportAntProperties>true</exportAntProperties>
                            </configuration>
                        </execution>
                    </executions>
                    <dependencies>
                        <dependency>
                            <groupId>org.apache.ant</groupId>
                            <artifactId>ant</artifactId>
                            <version>1.8.4</version>
                        </dependency>
                    </dependencies>
                </plugin>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>versions-maven-plugin</artifactId>
                    <version>1.3.1</version>
                    <executions>
                        <execution>
                            <id>set-new-version</id>
                            <goals>
                                <goal>set</goal>
                            </goals>
                            <phase>validate</phase>
                            <configuration>
                                <generateBackupPoms>false</generateBackupPoms>
                                <newVersion>${new-user-version}</newVersion>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

您可以通过调用来运行此功能:

mvn -N -P change-version

一些解释:

于 2012-09-19T12:20:15.583 回答
10

如果你像这样在你的 pom 中添加一个属性:

<properties>
    <db.password></db.password>
</properties>

并在你的 pom 中使用它,如下所示:

<someTag>${db.password}</someTag>

然后你可以从命令行设置属性:

$ mvn -Ddb.password="DonaldDuck" install

但它不像命令提示符那样具有交互性。

于 2012-07-05T09:18:38.450 回答