У меня был хороший опыт работы с ANTForm : http://antforms.sourceforge.net/.
Генерирует панели Java Swing из XML. Я использовал его для создания простых приложений с графическим интерфейсом, которые выполняют цели ANT.
Пример объявления XML:
<antform title="Send Mail"
save="properties.txt"
image="doc/images/testlogo.jpg">
<label>To send a mail, use the following form. Pick a recipient,
type a subject and a body...the script will do the rest.</label>
<selectionProperty label="Recipient: "
property="recipient"
values="address1@somewhere.com; address2@somewhere.com; address4@somewhere.com"
separator=";"/>
<textProperty label="Subject : " property="subject" />
<multilineTextProperty label="Message body: "
property="body"/>
<booleanProperty label="Send immediately: " property="send"/>
</antform>
Пример того, что он производит:
![enter image description here](https://i.stack.imgur.com/RJnov.jpg)