|
3 | 3 | build file to allow ant (http://jakarta.apache.org/ant/) to be used
|
4 | 4 | to build the PostgreSQL JDBC Driver.
|
5 | 5 |
|
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 $ |
7 | 7 |
|
8 | 8 | -->
|
9 | 9 |
|
|
139 | 139 |
|
140 | 140 | <!-- This builds the jar file containing the driver-->
|
141 | 141 | <targetname="jar"depends="compile,examples">
|
142 |
| - <jarjarfile="${jars}/postgresql.jar"basedir="${dest}"includes="${package}/**"excludes="${package}/test/**,${package}/*.properties"/> |
143 |
| - <jarjarfile="${jars}/postgresql-examples.jar"basedir="${dest}"includes="example/**" /> |
| 142 | + <jarjarfile="${jars}/postgresql.jar"basedir="${dest}"includes="${package}/**/*.class"excludes="${package}/test/**"/> |
| 143 | + <jarjarfile="${jars}/postgresql-examples.jar"basedir="${dest}"includes="example/**/*.class" /> |
144 | 144 | </target>
|
145 | 145 |
|
146 | 146 | <!--
|
|