我在 ant 脚本中有简单的用户输入元素(从 maven antrun 插件运行):
<input addproperty="myprop" validargs="y,n" defaultvalue="y">
这在 Windows 上效果很好:该过程停止,直到在命令行中输入y or n
。但是当它在 linux prod box 中运行时 - 输入 y/n 后什么也没发生:脚本(蚂蚁进程)挂起直到ctrl+C
我发现了一些关于它的邮件问题,仅此而已。
到目前为止,它是蚂蚁虫吗?有人可以复制它吗?谢谢!
在我的
linux 桌面 (RHEL 5) 上运行良好,用于以下虚拟代码段,使用 maven-3.0.4
和 java 1.6.0_32
从 shell 运行bash
。
<project 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/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>dummy</artifactId>
<groupId>com.dummy</groupId>
<version>1.0-SNAPSHOT</version>
<name>Dummy</name>
<url>http://www.dummy.com</url>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>generate-sources</phase>
<configuration>
<target>
<input addproperty="myprop" validargs="y,n" defaultvalue="y"/>
<echo message="${myprop}"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>