Date: 2004-05-12T08:14:58
   Editor: EricLeGoff <[EMAIL PROTECTED]>
   Wiki: Apache Geronimo Wiki
   Page: FrequentlyAskedQuestions
   URL: http://wiki.apache.org/geronimo/FrequentlyAskedQuestions

   no comment

Change Log:

------------------------------------------------------------------------------
@@ -1,7 +1,7 @@
 = Project questions =
 
 == Why should I use Geronimo instead of A.N.Other-appServer ==
- full compliance, use of proven apache technologie, fast and reliable 
development, doesn't cost 100.000$ ;) etc.
+ full compliance, use of proven Apache technologies, fast and reliable 
development, doesn't cost 100.000$ ;) etc.
 == Why does geronimo exist? ==
  motivation behind original developers
 == Can my company use Geronimo? Are there any restrictions? ==
@@ -41,6 +41,20 @@
 == How do I set up my favorite IDE ? ==
 === IntelliJ ===
 === Eclipse ===
+You may use this bash script on Linux box (or use Cygwin if you are unlucky 
enough to use Win$ ;) ) :
+
+#!/usr/bin/bash
+for modules in "$(find ./*/ -name project.xml | sed 's/project.xml//')"; do
+   echo $modules;
+   for module in $modules
+   do
+     pushd $module &> /dev/null
+     maven eclipse > /dev/null
+     popd &> /dev/null
+   done;
+done; 
+
+
 === Netbeans ===
 
 == What on Earth is a GBean? Why are they different from MBeans? ==

Reply via email to