mbien commented on code in PR #5126: URL: https://github.com/apache/netbeans/pull/5126#discussion_r1055767962
########## README.md: ########## @@ -54,21 +52,26 @@ Build with the default config (See the [cluster.config](https://github.com/apach ``` $ ant ``` -Build the basic project (mainly, JavaSE features): +Build the basic project (mainly Java features): ``` $ ant -Dcluster.config=basic ``` -Build the full project (including Groovy, PHP, JavaEE/JakartaEE, and JavaScript features): +Build the full project (including Groovy, PHP, JavaEE/JakartaEE and JavaScript features): ``` $ ant -Dcluster.config=full ``` Build the NetBeans Platform: ``` $ ant -Dcluster.config=platform ``` +Cleanup: +``` +$ ant -q clean Review Comment: i thought about this. But this is more of a git trick and has not much to do with the NetBeans project IMO. If we wanted to support it we should call it from ant, like: `ant reset-workspace` which would be also self explanatory that it is a quite dangerous ant goal. git clean is no joke. It cleans your sources and everything else too. `ant clean` is for the build (assuming it works). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
