Mantis - Resin
Viewing Issue Advanced Details
2088 trivial always 10-18-07 17:43 10-01-07 10:05
koreth  
ferg  
normal  
closed 3.1.3  
fixed  
none    
none 3.1.4  
0002088: build.xml tweak for better Eclipse support
This patch separates out the creation of Version.java so it can be called as the first step in a builder in Eclipse. Without this, you have to run "ant" manually before letting Eclipse compile all the .java files.

--- a/build.xml
+++ b/build.xml
@@ -221,7 +221,7 @@
     </antcall>
   </target>
 
- <target name="resin-dev" depends="init, ejb, jca, jcr, jms, jsdk, jstl, jsf, jta, j2ee-deploy, j2ee-management, saaj, jaxrpc, portlet, script, resin-util">
+ <target name="version">
 
     <!-- filter to insert version -->
 
@@ -247,6 +247,10 @@
       </filterset>
     </copy>
 
+ </target>
+
+ <target name="resin-dev" depends="init, ejb, jca, jcr, jms, jsdk, jstl, jsf, jta, j2ee-deploy, j2ee-management, saaj, jaxrpc, portlet, script, resin-util, version">
+
     <!-- build module -->
 
     <antcall target="module" inheritRefs="true">

There are no notes attached to this issue.