Community
Participate
Working Groups
I have found that Eclipse does not allow the use of the "input" task in Ant. We use this to request certain arguments from our developers to modify build : <?xml version="1.0"?> <project name="Input Bug" default="test"> <target name="test" description="--> Eclipse doesn't allow input"> <input addproperty="input" message="Give me some input!" /> </target> </project>
Move to Platform/Ant
Eclipse allows the input task...it just does not provide a workable input handler for builds in a separate VM. Two workarounds: run your build in the same VM as Eclispe for which an input handler is provided. See the JRE tab for your Ant launch configuration. create and use your own input handler (specified using -inputhandler) *** This bug has been marked as a duplicate of 45484 ***