Date: 2004-07-02T14:12:28
   Editor: PrestonBannister <[EMAIL PROTECTED]>
   Wiki: Apache Geronimo Wiki
   Page: FrequentlyAskedQuestions
   URL: http://wiki.apache.org/geronimo/FrequentlyAskedQuestions

   Win32 eclipse usage

Change Log:

------------------------------------------------------------------------------
@@ -60,9 +60,15 @@
    popd &> /dev/null
 done;
 }}}
-
-This is just scary and wrong, but I don't like all those CVS directories in my 
Eclipse tree.  I also don't want to keep adding the xmlbeans generated code to 
my projects.
-
+The equivalent for Win32 (Windows 2000 and later) without need for Cygwin :
+{{{
+cmd /c "for /r . %f in (project*.xml) do @( cd %~pf && maven eclipse )"
+}}}
+This assumes the only match to "project*.xml" in the tree is "project.xml" 
which you can check with :
+{{{
+for /r . %f in (project*.xml) do @echo %f
+}}}
+The following is just scary and wrong, but I don't like all those CVS 
directories in my Eclipse tree.  I also don't want to keep adding the xmlbeans 
generated code to my projects.
 {{{
 #!/bin/bash
 MODULES=$(find ./*/ -name project.xml | sed 's/project.xml//')

Reply via email to