[MOBY-guts] biomoby commit
Gary Schlitz
gss at pub.open-bio.org
Fri May 28 21:35:18 UTC 2004
gss
Fri May 28 17:35:17 EDT 2004
Update of /home/repository/moby/moby-live/S-MOBY/ref-impl/example-clients/SimpleEngager
In directory pub.open-bio.org:/tmp/cvs-serv14091
Modified Files:
build.xml
Log Message:
Misc fixes
moby-live/S-MOBY/ref-impl/example-clients/SimpleEngager build.xml,1.1,1.2
===================================================================
RCS file: /home/repository/moby/moby-live/S-MOBY/ref-impl/example-clients/SimpleEngager/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- /home/repository/moby/moby-live/S-MOBY/ref-impl/example-clients/SimpleEngager/build.xml 2004/05/27 19:37:10 1.1
+++ /home/repository/moby/moby-live/S-MOBY/ref-impl/example-clients/SimpleEngager/build.xml 2004/05/28 21:35:17 1.2
@@ -1,26 +1,24 @@
-<!-- Apache Ant format build file for Semantic MOBY core library -->
+<!-- Apache Ant format build file for the SimpleEngager client GUI -->
-<project name="smoby-core" default="jar" basedir=".">
+<project name="simple-engager" default="jar" basedir=".">
<!-- Import shared stuff -->
- <import file="../library.xml"/>
+ <import file="../../library.xml"/>
+
+ <!-- The main jar file -->
+ <property name="jar-file" value="${build-dir}/engager.jar"/>
<!-- Package the compiled source files into the main jar file -->
<target name="jar" depends="compile">
- <jar destfile="${core-jar-file}" basedir="${classes-dir}"/>
+ <jar destfile="${jar-file}" basedir="${classes-dir}"/>
</target>
<!-- Compile all the source files that go into the library -->
<target name="compile">
<mkdir dir="${classes-dir}"/>
<javac srcdir="${src-dir}" destdir="${classes-dir}">
- <classpath refid="core.classpath"/>
+ <classpath refid="common.classpath"/>
</javac>
</target>
- <!-- Deploy the jar file to the Tomcat shared library directory -->
- <target name="deploy-to-tomcat" depends="jar">
- <copy file="${core-jar-file}" todir="${tomcat-shared-lib-dir}"/>
- </target>
-
</project>
More information about the MOBY-guts
mailing list