app/nbactions.xml (41 lines of code) (raw):

<?xml version="1.0" encoding="UTF-8"?> <actions> <action> <actionName>CUSTOM-build no tests</actionName> <displayName>build no tests</displayName> <goals> <goal>install</goal> </goals> <properties> <skipTests>true</skipTests> </properties> </action> <action> <actionName>CUSTOM-clean build no tests</actionName> <displayName>clean build no tests</displayName> <goals> <goal>clean</goal> <goal>install</goal> </goals> <properties> <skipTests>true</skipTests> </properties> </action> <action> <actionName>run</actionName> <displayName>jetty:run</displayName> <goals> <goal>jetty:run</goal> </goals> </action> <action> <actionName>debug</actionName> <displayName>jetty:run+debug</displayName> <goals> <goal>jetty:run</goal> </goals> <properties> <jpda.listen>maven</jpda.listen> </properties> </action> </actions>