[MOBY-guts] biomoby commit

Martin Senger senger at dev.open-bio.org
Mon Mar 3 11:34:17 UTC 2008


senger
Mon Mar  3 06:34:16 EST 2008
Update of /home/repository/moby/moby-live/Java
In directory dev.open-bio.org:/tmp/cvs-serv3170

Modified Files:
	build.xml 
Log Message:
* more work on junit testing and its infrastructure
* removing some compiler warnings from generated data types
* better use of caching in skeleton generator

moby-live/Java build.xml,1.70,1.71
===================================================================
RCS file: /home/repository/moby/moby-live/Java/build.xml,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- /home/repository/moby/moby-live/Java/build.xml	2008/03/02 12:45:24	1.70
+++ /home/repository/moby/moby-live/Java/build.xml	2008/03/03 11:34:16	1.71
@@ -237,7 +237,7 @@
   <!-- Builds config files and run-time scripts                           -->
   <!-- ================================================================== -->
   <target name="config" depends="init"
-    description="Create all run-time scripts and configuration files.">
+    description="Create all run-time scripts and configuration files">
 
     <property name="my.log4j.properties"
       location="${src.config}/log4j.properties.template"/>
@@ -313,7 +313,7 @@
   <!-- Compiles everything                                                -->
   <!-- ================================================================== -->
   <target name="compile" depends="config"
-    description="Compile all source code (default).">
+    description="Compile all source code (default)">
 
     <condition property="xlint.param" value="-Xlint:unchecked" else="-Xlint:none">
       <istrue value="${compile.warnings}"/>
@@ -361,7 +361,7 @@
   <!-- Copy help files of the Dashboard panels to the docs directory       -->
   <!-- =================================================================== -->
   <target name="docs" depends="compile,cleanapi"
-    description="Generate API documentation.">
+    description="Generate API documentation">
     
     <javadoc
       additionalparam="-quiet"
@@ -417,7 +417,12 @@
   <!-- Clean-up                                                           -->
   <!-- ================================================================== -->
   <target name="clean" depends="cleanapi"
-    description="Remove all generated files.">
+    description="Remove compiled classes and built files">
+    <delete dir="${build.dir}"/>
+  </target>
+  
+  <target name="cleanall" depends="clean,clean-services,clean-datatypes"
+    description="Remove all generated files">
     <delete dir="${build.dir}"/>
   </target>
   
@@ -431,7 +436,7 @@
   <!-- Builds a jar file with jMoby classes                               -->
   <!-- ================================================================== -->
   <target name="jars" depends="compile"
-    description="Create jar files with jMoby classes.">
+    description="Create jar files with jMoby classes">
     
     <property name="released.date" value="${TODAY_SHORT}"/>
     <property name="project.jar"
@@ -462,7 +467,7 @@
    <!-- ================================================================== -->
    <target name="all"
      depends="clean,compile,docs,jars,jar-rdfagent,wardist,bindist-rdfagent"
-     description="Clean, compile, generate docs, then build the rest."/>
+     description="Clean, compile, generate docs, then build the rest"/>
 
    <!-- ================================================================== -->
    <!-- Just for testing...                                                -->




More information about the MOBY-guts mailing list