> 1. I think this 10-20s in a 15 mins installation is just the 1%
I attach a patch made by Stefan (thank you), that reduces the total time
of "ant core.lib wad.lib trl.lib" to 2 seconds.

In my opinion this patch eliminates every argument related to
time reductions.

> 2. It is a mess for the developers... Now if I do an install.source all 
> the three jar are marked as modified... (risk while doing commits) 
Yes, in any case the 3 jars should be added to the svn:ignore list.


Juan Pablo
Index: src-trl/build.xml
===================================================================
--- src-trl/build.xml	(revisión: 12574)
+++ src-trl/build.xml	(copia de trabajo)
@@ -68,7 +68,7 @@
     </javac>
   </target>
 
-  <target name="compile" depends="clean, compileSqlc">
+  <target name="compile" depends="compileSqlc">
     <javac srcdir="${build.trl.src}" destdir="${build.trl}" deprecation="on" encoding="UTF-8" debug="true" debuglevel="lines,vars,source">
       <classpath refid="trl.class.path"/>  
     </javac>
@@ -86,7 +86,7 @@
     </jar>
   </target>
  
-  <target name="build" depends="compile, doc, build.jar">
+  <target name="build" depends="compile, build.jar">
   </target>
   
   <target name="doc" depends="init" description="Generate api">
Index: src-wad/build.xml
===================================================================
--- src-wad/build.xml	(revisión: 12574)
+++ src-wad/build.xml	(copia de trabajo)
@@ -69,7 +69,7 @@
     </javac>
   </target>
 
-  <target name="compile" depends="clean, compileSqlc">
+  <target name="compile" depends="compileSqlc">
     <javac srcdir="${build.wad.src}" destdir="${build.wad}" deprecation="on" encoding="UTF-8" debug="true" debuglevel="lines,vars,source">
       <classpath refid="wad.class.path"/>  
     </javac>
@@ -91,7 +91,7 @@
   </jar>  
 </target>   
 
-<target name="build" depends="compile, doc, build.jar">
+<target name="build" depends="compile, build.jar">
 </target>
 
 <target name="doc" depends="init" description="Generate api">
Index: src-core/build.xml
===================================================================
--- src-core/build.xml	(revisión: 12574)
+++ src-core/build.xml	(copia de trabajo)
@@ -43,7 +43,7 @@
     <delete failonerror="false" file="${build.core.lib}/openbravo-core.jar"/>
   </target>
 
-  <target name="compile" depends="clean, init">
+  <target name="compile" depends="init">
     <javac srcdir="${build.core.src}" destdir="${build.core}" deprecation="on" encoding="UTF-8" debug="true" debuglevel="lines,vars,source">
       <classpath refid="core.class.path"/>  
     </javac>
@@ -61,7 +61,7 @@
   </jar> 
 </target>
 
-<target name="build" depends="compile, doc, build.jar">
+<target name="build" depends="compile, build.jar">
 </target>
 
 <target name="doc" depends="init" description="Generate api">
------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Openbravo-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-development

Reply via email to