gpt4 book ai didi

java - ant "<input addproperty=..."无法在 Linux 中的 bash 中工作

转载 作者:行者123 更新时间:2023-11-30 04:46:12 26 4
gpt4 key购买 nike

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

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

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

我找到了一些mail issue about concerning it没有别的。

目前为止是 Ant bug 吗?有人可以复制它吗?谢谢!

最佳答案

使用 maven-3.0.4java 1.6.0_32bash< 运行以下虚拟代码片段,在我的 Linux 桌面 (RHEL 5) 上运行良好 外壳。

<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>

关于java - ant "&lt;input addproperty=..."无法在 Linux 中的 bash 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10901254/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com