[MOBY-guts] biomoby commit
Gary Schlitz
gss at pub.open-bio.org
Thu May 27 15:54:40 UTC 2004
gss
Thu May 27 11:54:40 EDT 2004
Update of /home/repository/moby/moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com
In directory pub.open-bio.org:/tmp/cvs-serv6657
Modified Files:
build.xml .classpath
Added Files:
.cvsignore .xdoclet
Log Message:
Finally, some build scripts
moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com .cvsignore,NONE,1.1 .xdoclet,1.2,1.3 build.xml,1.1,1.2 .classpath,1.3,1.4
===================================================================
RCS file: /home/repository/moby/moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com/.xdoclet,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
===================================================================
RCS file: /home/repository/moby/moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com/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-providers/acmepubs.com/build.xml 2004/03/12 17:48:34 1.1
+++ /home/repository/moby/moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com/build.xml 2004/05/27 15:54:40 1.2
@@ -1,2 +1,29 @@
-<project name="acmepubs.com" basedir=".">
+<!-- Apache Ant format build file for acmepubs.com example provider -->
+
+<project name="acmepubs.com" default="war" basedir=".">
+
+ <!-- Import shared stuff -->
+ <import file="../../servlet.xml"/>
+
+ <!-- The full path of the web archive file to be built -->
+ <property name="war-file" value="acmepubs.com.war"/>
+
+ <!-- Package the compiled source files into the main jar file -->
+ <target name="war" depends="compile">
+ <jar destfile="${war-file}" basedir="${web-root}"/>
+ </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="common.classpath"/>
+ </javac>
+ </target>
+
+ <!-- Clean the build directory and the war file -->
+ <target name="clean" depends="clean-build">
+ <delete file="${war-file}"/>
+ </target>
+
</project>
===================================================================
RCS file: /home/repository/moby/moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com/.classpath,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- /home/repository/moby/moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com/.classpath 2004/04/02 00:03:39 1.3
+++ /home/repository/moby/moby-live/S-MOBY/ref-impl/example-providers/acmepubs.com/.classpath 2004/05/27 15:54:40 1.4
@@ -5,9 +5,6 @@
<classpathentry kind="con" path="com.genuitec.eclipse.j2eedt.core.J2EE13_CONTAINER"/>
<classpathentry kind="src" path="/HttpClient"/>
<classpathentry kind="src" path="/Jena2"/>
- <classpathentry kind="src" path="/www.go.org"/>
- <classpathentry kind="src" path="/www.pubs.org"/>
- <classpathentry kind="src" path="/www.sgd.org"/>
<classpathentry kind="src" path="/S-MOBY_Core"/>
<classpathentry kind="output" path="WebRoot/WEB-INF/classes"/>
</classpath>
More information about the MOBY-guts
mailing list