Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
a008109d
Commit
a008109d
authored
23 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Prevent ANT from recreating the JAR files just because the
errors.properties files were being copied.
parent
385d271b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/jdbc/build.xml
+4
-3
4 additions, 3 deletions
src/interfaces/jdbc/build.xml
with
4 additions
and
3 deletions
src/interfaces/jdbc/build.xml
+
4
−
3
View file @
a008109d
...
@@ -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.1
1
2001/05/1
7
0
3:22
:5
3
momjian Exp $
$Id: build.xml,v 1.1
2
2001/05/1
9
0
2:48
:5
4
momjian Exp $
-->
-->
...
@@ -108,10 +108,11 @@
...
@@ -108,10 +108,11 @@
<exclude
name=
"${package}/PostgresqlDataSource.java"
unless=
"jdk1.2e+"
/>
<exclude
name=
"${package}/PostgresqlDataSource.java"
unless=
"jdk1.2e+"
/>
<exclude
name=
"${package}/xa/**"
unless=
"jdk1.2e+"
/>
<exclude
name=
"${package}/xa/**"
unless=
"jdk1.2e+"
/>
<exclude
name=
"${package}/test/**"
unless=
"junit"
/>
<exclude
name=
"${package}/test/**"
unless=
"junit"
/>
<exclude
name=
"${package}/*.properties"
/>
</javac>
</javac>
<copy
todir=
"${dest}"
overwrite=
"true"
filtering=
"on"
>
<copy
todir=
"${dest}"
overwrite=
"true"
filtering=
"on"
>
<fileset
dir=
"${src}"
>
<fileset
dir=
"${src}"
>
<include
name=
"
**
/*.properties"
/>
<include
name=
"
${package}
/*.properties"
/>
<exclude
name=
"${dest}/**"
/>
<exclude
name=
"${dest}/**"
/>
</fileset>
</fileset>
</copy>
</copy>
...
@@ -138,7 +139,7 @@
...
@@ -138,7 +139,7 @@
<!-- 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/**"
/>
<jar
jarfile=
"${jars}/postgresql.jar"
basedir=
"${dest}"
includes=
"${package}/**"
excludes=
"${package}/test/**
,${package}/*.properties
"
/>
<jar
jarfile=
"${jars}/postgresql-examples.jar"
basedir=
"${dest}"
includes=
"example/**"
/>
<jar
jarfile=
"${jars}/postgresql-examples.jar"
basedir=
"${dest}"
includes=
"example/**"
/>
</target>
</target>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment