**[[NETBEANS-1175] Move websvccommon cluster](https://issues.apache.org/jira/browse/NETBEANS-1175)**
Synced the repo with upstream to make sure everything is up to date duplicate the repo folder and renamed to “incubator-netbeans-1175-move-websvccommon-cluster” then created new branch for the work and checked out ``` git branch netbeans-1175-move-websvccommon-cluster git checkout netbeans-1175-move-websvccommon-cluster ``` listed out the modules to be moved `ant print-selected-modules -Dnb.clusters.list=nb.cluster.websvccommon` modules= websvc.jaxwsmodelapi, websvc.saas.api, websvc.saas.codegen, websvc.saas.kit, websvc.saas.ui created directory for the cluster ``` mkdir websvccommon ``` then moved the modules ``` git mv websvc.jaxwsmodelapi websvccommon/ git mv websvc.saas.api websvccommon/ git mv websvc.saas.codegen websvccommon/ git mv websvc.saas.kit websvccommon/ git mv websvc.saas.ui websvccommon/ ``` **[commit 1](https://github.com/apache/incubator-netbeans/commit/22f35cbd5c387b37dd0de801487da0200903437f)** _[NETBEANS-1175] Move websvccommon cluster - task 1 moving the modules to websvccommon folder_ -------------------------------------- performed find & replace ../nbbuild with ../../nbbuild **[commit 2](https://github.com/apache/incubator-netbeans/commit/8a446960ae5ad7d540255928c8ea0338a07965fb)** _[NETBEANS-1175] Move websvccommon cluster - task 2 replace ../nbbuild with ../../nbbuild_ -------------------------------------- and <project basedir="." default="build" name=" with <project basedir="." default="build" name="websvccommon/ **[commit 3](https://github.com/apache/incubator-netbeans/commit/cec7ddc345fc88f4a9b6e7d8be08139597aa8c90)** _[NETBEANS-1175] Move websvccommon cluster - task 3 replace <project basedir="." default="build" name=" with <project basedir="." default="build" name="websvccommon/_ -------------------------------------- Update references to the moved modules in rat-exclusions.txt **[commit 4](https://github.com/apache/incubator-netbeans/commit/654fe085a15acf38e06c3d9c4c4af060ce579692)** _[NETBEANS-1175] Move websvccommon cluster - task 4 Update references to the moved modules in rat-exclusions.txt_ -------------------------------------- performed ant on root folder BUILD SUCCESSFUL Total time: 8 minutes 35 seconds then ant clean build in each module of the cluster BUILD SUCCESSFUL was the output for all. ant tryme on root opened the IDE successfully tried creating a simple java application prompted to enable java se prompted to install nb-javac restarted itself for the installation of nb-javac created “Hello Apache Netbeans!” app executed successfully. did not notice any problem. Hope everything is fine. ----------------------------- **Additional** output for ``` ant build test-platform rat verify-libs-and-licenses build-nbms generate-uc-catalog build-source-zips ``` BUILD SUCCESSFUL Total time: 72 minutes 49 seconds [ Full content available at: https://github.com/apache/incubator-netbeans/pull/780 ] This message was relayed via gitbox.apache.org for [email protected]
