質問

I would like to execute a bash script in postGoal section of my maven.xml using Jelly. How can I do this?

役に立ちましたか?

解決

I found it. You have to use jelly:ant (I mapped it is as a). Then just write:

<a:exec executable="/bin/bash">
    <a:arg value="script_path"/>
    <a:arg value="srcipt_args"/>
</a:exec>
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top