Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7c2916a

Browse files
committed
Fix ANT so it only has '*.class' files, not the 'tags' file.
1 parent 371a04f commit 7c2916a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/interfaces/jdbc/build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
build file to allow ant (http://jakarta.apache.org/ant/) to be used
44
to build the PostgreSQL JDBC Driver.
55
6-
$Id: build.xml,v 1.12 2001/05/19 02:48:54 momjian Exp $
6+
$Id: build.xml,v 1.13 2001/05/23 19:30:35 momjian Exp $
77
88
-->
99

@@ -139,8 +139,8 @@
139139

140140
<!-- This builds the jar file containing the driver -->
141141
<target name="jar" depends="compile,examples">
142-
<jar jarfile="${jars}/postgresql.jar" basedir="${dest}" includes="${package}/**" excludes="${package}/test/**,${package}/*.properties"/>
143-
<jar jarfile="${jars}/postgresql-examples.jar" basedir="${dest}" includes="example/**" />
142+
<jar jarfile="${jars}/postgresql.jar" basedir="${dest}" includes="${package}/**/*.class" excludes="${package}/test/**"/>
143+
<jar jarfile="${jars}/postgresql-examples.jar" basedir="${dest}" includes="example/**/*.class" />
144144
</target>
145145

146146
<!--

0 commit comments

Comments
 (0)