1

我在 ant 脚本中有简单的用户输入元素(从 maven antrun 插件运行):

<input addproperty="myprop" validargs="y,n" defaultvalue="y">

这在 Windows 上运行良好:进程停止,直到y or n在命令行中输入。但是当它在 linux prod 框中运行时 - 输入 y/n 后什么也没有发生:脚本(ant 进程)挂起,直到ctrl+C

我发现了一些关于它的邮件问题,没有别的。

到目前为止,它是蚂蚁虫吗?有人可以复制吗?谢谢!


insert into mytable (columns)
select somevalue, somevalue, a.id, b.id, c.id
from
 othertable1 a
 cross join othertable2 b
 cross join othertable3 c
where
 a ... condition
 b ... condition
 c ... condition
4

1 回答 1

2

在我的 linux 桌面(RHEL 5)上工作正常,下面的虚拟代码片段使用maven-3.0.4java 1.6.0_32bashshell 运行。

<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>
于 2012-06-06T04:34:48.650 回答