Reputation: 475
So I know you can pass -e to ant and you won't get the [javac] type tags when ant runs, however I don't want to remove all the tags from the different running portions, just the Java task portion. Is there an attribute I can set just for the java task?
Thanks in advance.
Upvotes: 1
Views: 226
Reputation: 14205
You can toss this at the top of your <target>
block to enable EmacsMode for a single target.
<script language="javascript">
var logger = project.getBuildListeners().firstElement();
logger.setEmacsMode(true);
</script>
Upvotes: 0