Un article qui vous permettra de faire de l'auto complétion en bash pour les goals maven :
Divers
Aller au contenu | Aller au menu | Aller à la recherche
mercredi 22 juillet 2009
Par Olivier le mercredi 22 juillet 2009, 11:19
Un article qui vous permettra de faire de l'auto complétion en bash pour les goals maven :
vendredi 15 mai 2009
Par Olivier le vendredi 15 mai 2009, 17:15
Je travaille sur un projet depuis longtemps avec Maven et beaucoup, beaucoup de modules :
find . -name "pom.xml" | wc -l 152
lundi 20 octobre 2008
Par Olivier le lundi 20 octobre 2008, 19:05
ENG : If you want to see maven in colour, you can just add an litle awk in a script :)
FR : Vous voulez voir maven en couleur, il suffit d'ajouter un petit awk dans un script :)
jeudi 31 juillet 2008
Par Olivier le jeudi 31 juillet 2008, 23:01
I am working on an international CRM project based on JDK 6, GWT 1.5, MyGWT/Ext GWT, tomcat 6, maven, hibernate, spring, Oracle, ...
This business application must worked with Firefox 2, IE 6/7 and 9 locales (the target is about 15 locales).
This a very large GWT application and it takes a long time to compile, about 12 mn "only" for GWT maven module : this is a long time in development mode.
GWT spends time to compute permutations : create javascript file per browser/locale. With this kind of application, GWT produces 50 permutations :
This is my module.gwt.xml :
<module>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name="com.google.gwt.user.User" />
<inherits name="com.google.gwt.i18n.I18N" />
<!-- Add support -->
<inherits name="com.aaa.bbb.ccc.XXXCore" />
<!-- Add mygwt support -->
<inherits name="net.mygwt.ui.MyGWT" />
<!-- Add hibernate4gwt support -->
<inherits name="net.sf.hibernate4gwt.Hibernate4Gwt" />
<inherits name="net.sf.hibernate4gwt.SqlDates"/>
<!-- Add gwt-log support -->
<inherits name="com.allen_sauer.gwt.log.gwt-log" />
<!-- Add ftr-gwt-library-date -->
<inherits name='org.cobogw.gwt.user.User' />
<inherits name="eu.future.earth.gwt.FtrGwtLibrary" />
<!-- GWT locale -->
<extend-property name="locale" values="de_DE" />
<extend-property name="locale" values="en_UK" />
<extend-property name="locale" values="fr_FR" />
<extend-property name="locale" values="hr_HR" />
<extend-property name="locale" values="hu_HU" />
<extend-property name="locale" values="it_IT" />
<extend-property name="locale" values="pt_PT" />
<extend-property name="locale" values="pl_PL" />
<extend-property name="locale" values="nl_NL" />
<!-- Logging -->
<extend-property name="log_level" values="DEBUG,INFO,WARN,FATAL,EROR,OFF" />
<set-property name="log_level" value="INFO" />
<!-- Turn off "DivLogger" -->
<set-property name="log_DivLogger" value="DISABLED" />
<!-- Specify the app entry point class. -->
<entry-point class="com.aaa.bbb.ccc.XXXEntryPoint" />
</module>
The main idea is to reduce permutations.
How to speed up the GWT compiler ? (Part II).
How to speed up the GWT compiler ? (Part III).
Coming soon.
mercredi 23 mai 2007
Par Olivier le mercredi 23 mai 2007, 21:25
« billets précédents - page 1 de 2