Commit 7c2916a9 authored by Bruce Momjian's avatar Bruce Momjian

Fix ANT so it only has '*.class' files, not the 'tags' file.

parent 371a04fc
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
build file to allow ant (http://jakarta.apache.org/ant/) to be used build file to allow ant (http://jakarta.apache.org/ant/) to be used
to build the PostgreSQL JDBC Driver. to build the PostgreSQL JDBC Driver.
$Id: build.xml,v 1.12 2001/05/19 02:48:54 momjian Exp $ $Id: build.xml,v 1.13 2001/05/23 19:30:35 momjian Exp $
--> -->
...@@ -139,8 +139,8 @@ ...@@ -139,8 +139,8 @@
<!-- This builds the jar file containing the driver --> <!-- This builds the jar file containing the driver -->
<target name="jar" depends="compile,examples"> <target name="jar" depends="compile,examples">
<jar jarfile="${jars}/postgresql.jar" basedir="${dest}" includes="${package}/**" excludes="${package}/test/**,${package}/*.properties"/> <jar jarfile="${jars}/postgresql.jar" basedir="${dest}" includes="${package}/**/*.class" excludes="${package}/test/**"/>
<jar jarfile="${jars}/postgresql-examples.jar" basedir="${dest}" includes="example/**" /> <jar jarfile="${jars}/postgresql-examples.jar" basedir="${dest}" includes="example/**/*.class" />
</target> </target>
<!-- <!--
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment