Ответ 1
В документации exec
Ant:
Attribute Description dir the directory in which the command should be executed.
<exec executable="${grails}" dir="${my.project.dir}">
Я хочу запустить задачу "exec grails" в проекте grails. Я устанавливаю путь grail в задании exec, например
<exec executable="${grails}"
Как я могу сказать, что exec должен начинаться с моей папки проекта?
Спасибо большое!
В документации exec
Ant:
Attribute Description dir the directory in which the command should be executed.
<exec executable="${grails}" dir="${my.project.dir}">