[MOBY-guts] biomoby commit

Dmitry Repchevski drepchevski at dev.open-bio.org
Thu Dec 17 14:06:03 UTC 2009


drepchevski
Thu Dec 17 09:06:03 EST 2009
Update of /home/repository/moby/moby-live/Java/xmls
In directory dev.open-bio.org:/tmp/cvs-serv26788/xmls

Modified Files:
	inbMoby.xml 
Log Message:

moby-live/Java/xmls inbMoby.xml,1.6,1.7
===================================================================
RCS file: /home/repository/moby/moby-live/Java/xmls/inbMoby.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- /home/repository/moby/moby-live/Java/xmls/inbMoby.xml	2009/12/17 11:40:49	1.6
+++ /home/repository/moby/moby-live/Java/xmls/inbMoby.xml	2009/12/17 14:06:03	1.7
@@ -14,6 +14,7 @@
 <property name="inb.central.jar" value="MobyCentral.jar"/>
 <property name="inb.central.model.jar" value="MobyCentralModel.jar"/>
 <property name="inb.central.gui.jar" value="MobyGUIComponents.jar"/>
+<property name="inb.generator.jar" value="MobyGenerator.jar"/>
 
 <!-- ================================================================== -->
 <!-- Initialize (whatever needs to be done)                             -->
@@ -27,8 +28,10 @@
 <!-- ================================================================== -->
 <target name="build-core" depends="inb-core-compile"
   description="Build MobyCore">
-<jar destfile="${build.lib}/${inb.core.jar}">
+  <jar destfile="${build.lib}/${inb.core.jar}">
+
     <fileset dir="${build.inb.core}"/>
+    <fileset dir="${inb.config.dir}/mobycore"/>
   </jar>
 </target>
 
@@ -82,6 +85,25 @@
   </jar>
 </target>
 
+<!-- ================================================================== -->
+<!-- Build INB MobyGenerator                                            -->
+<!-- ================================================================== -->
+<target name="build-generator" depends="build-central-gui, inb-generator-compile"
+  description="Build MobyGenerator">
+
+  <property name="released.date" value="${TODAY_SHORT}"/>
+  <jar destfile="${build.lib}/${inb.generator.jar}">
+    <manifest>
+      <attribute name="Built-By"      value="${user.name}"/>
+      <attribute name="Released-Date" value="${released.date}"/>
+      <attribute name="Class-Path" value="MobyCore.jar MobyCentral.jar MobyCentralModel.jar MobyGUIComponents.jar"/> 
+      <attribute name="Main-Class" value="org.inb.biomoby.generator.gui.Main"/>
+    </manifest>
+    <fileset dir="${inb.config.dir}/generator"/>
+    <fileset dir="${build.inb.generator}"/>
+  </jar>
+</target>
+
   <!-- ================================================================== -->
   <!-- Compiles inb core source                                           -->
   <!-- ================================================================== -->
@@ -197,3 +219,33 @@
       <compilerarg value="${xlint.param}"/>
     </javac>
   </target>
+
+  <!-- ================================================================== -->
+  <!-- Compiles inb central model source                                        -->
+  <!-- ================================================================== -->
+  <target name="inb-generator-compile" depends="inb-init"
+    description="Compile generator applet source code">
+
+    <condition property="xlint.param" value="-Xlint:unchecked" else="-Xlint:none">
+      <istrue value="${compile.warnings}"/>
+    </condition>
+
+    <javac
+      sourcepath=""
+      srcdir="${src.main}"
+      destdir="${build.inb.generator}"
+      classpath="${build.lib}/${inb.core.jar};${build.lib}/${inb.central.jar};${build.lib}/${inb.central.model.jar};${build.lib}/${inb.central.gui.jar};"
+      verbose="${compile.verbose}"
+      debug="${compile.debug}"
+      debuglevel="lines,vars,source"
+      deprecation="${compile.deprecation}"
+      optimize="${compile.optimize}"
+      includes="org/inb/util/*,org/inb/biomoby/generator/*,org/inb/biomoby/generator/gui/*,org/inb/biomoby/generator/gui/worker/*"
+      excludes="org/inb/biomoby/shared/*">
+      
+      <classpath refid="build.classpath"/>
+      <classpath refid="dependency.classpath"/>
+      
+      <compilerarg value="${xlint.param}"/>
+    </javac>
+  </target>




More information about the MOBY-guts mailing list