[MOBY-guts] biomoby commit

Dmitry Repchevski drepchevski at dev.open-bio.org
Thu Dec 17 17:21:05 UTC 2009


drepchevski
Thu Dec 17 12:21:05 EST 2009
Update of /home/repository/moby/moby-live/Java/xmls
In directory dev.open-bio.org:/tmp/cvs-serv30175/xmls

Modified Files:
	inbMoby.xml 
Log Message:

moby-live/Java/xmls inbMoby.xml,1.7,1.8
===================================================================
RCS file: /home/repository/moby/moby-live/Java/xmls/inbMoby.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- /home/repository/moby/moby-live/Java/xmls/inbMoby.xml	2009/12/17 14:06:03	1.7
+++ /home/repository/moby/moby-live/Java/xmls/inbMoby.xml	2009/12/17 17:21:05	1.8
@@ -11,6 +11,7 @@
 
 <property name="inb.config.dir" location="${src.config}/inb"/>
 <property name="inb.core.jar" value="MobyCore.jar"/>
+<property name="inb.core.service.jar" value="MobyCoreService.jar"/>
 <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"/>
@@ -36,6 +37,21 @@
 </target>
 
 <!-- ================================================================== -->
+<!-- Build INB MobyCoreService                                          -->
+<!-- ================================================================== -->
+<target name="build-core-service" depends="build-core, inb-core-service-compile"
+  description="Build MobyCoreService">
+  <property name="released.date" value="${TODAY_SHORT}"/>
+  <jar destfile="${build.lib}/${inb.core.service.jar}">
+    <manifest>
+      <attribute name="Built-By"      value="${user.name}"/>
+      <attribute name="Released-Date" value="${released.date}"/>
+    </manifest>
+    <fileset dir="${build.inb.core.service}"/>
+  </jar>
+</target>
+
+<!-- ================================================================== -->
 <!-- Build INB MobyCentral                                              -->
 <!-- ================================================================== -->
 <target name="build-central" depends="build-core, inb-central-compile"
@@ -221,7 +237,7 @@
   </target>
 
   <!-- ================================================================== -->
-  <!-- Compiles inb central model source                                        -->
+  <!-- Compiles inb generator utility source                              -->
   <!-- ================================================================== -->
   <target name="inb-generator-compile" depends="inb-init"
     description="Compile generator applet source code">
@@ -249,3 +265,33 @@
       <compilerarg value="${xlint.param}"/>
     </javac>
   </target>
+
+  <!-- ================================================================== -->
+  <!-- Compiles inb core server source                                    -->
+  <!-- ================================================================== -->
+  <target name="inb-core-service-compile" depends="inb-init"
+    description="Compile core service 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.core.service}"
+      classpath="${build.lib}/${inb.core.jar}"
+      verbose="${compile.verbose}"
+      debug="${compile.debug}"
+      debuglevel="lines,vars,source"
+      deprecation="${compile.deprecation}"
+      optimize="${compile.optimize}"
+      includes="org/inb/biomoby/service/*,org/inb/biomoby/service/resolver/*"
+      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