Skip to content

Commit 8c4c981

Browse files
author
Nirmala Sundarappa
committed
Checking in the JDBC changes.
1 parent 4fe59aa commit 8c4c981

File tree

1 file changed

+1
-79
lines changed

1 file changed

+1
-79
lines changed

java/jdbc/build.xml

Lines changed: 1 addition & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
<?xml version="1.0"?>
22

33
<!--
4-
Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2017, 2016, Oracle and/or its affiliates. All rights reserved.
55
66
NAME
77
build.xml - For compiling and running connection management samples
88
99
DESCRIPTION
1010
Use this build.xml for compiling and running connection
1111
management related code samples.
12-
13-
MODIFIED (MM/DD/YY)
14-
nbsundar 01/14/16 - update
15-
nbsundar 02/16/15 - Creation
16-
1712
-->
1813
<project name="OracleJdbcSamples" default="compile">
1914
<description>Build and run Oracle Jdbc Samples</description>
@@ -44,7 +39,6 @@
4439
<javac srcdir="src" destdir="classes" debug="yes" includeantruntime="false" fork="yes" executable="${jdk.javac}">
4540
<classpath refid="java.classpath" />
4641
<include name="**/*.java" />
47-
<exclude name="**/.ade_path/*.java" />
4842
</javac>
4943

5044
</target>
@@ -66,17 +60,7 @@
6660
<echo> ============================================== </echo>
6761
<echo> (1) ant DataSourceSample </echo>
6862
<echo> (2) ant ProxySessionSample </echo>
69-
<echo> (3) ant UCPSample </echo>
70-
<echo> (4) ant UCPWithDRCPSample </echo>
7163
<echo> (5) ant DRCPSample </echo>
72-
<echo> (6) ant UCPInactiveConnectionTimeout </echo>
73-
<echo> (7) ant UCPConnectionWaitTimeout </echo>
74-
<echo> (8) ant UCPAbandonedConnectionTimeout </echo>
75-
<echo> (9) ant UCPAbandonedConnectionTimeout </echo>
76-
<echo> (10) ant UCPTimeToLiveConnectionTimeout </echo>
77-
<echo> (11) ant UCPConnectionHarvestingSample </echo>
78-
<echo> (12) ant UCPConnectionLabelingSample </echo>
79-
<echo> (13) ant UCPWebSessionAffinitySample </echo>
8064
<echo> ============================================== </echo>
8165

8266
<target name="DataSourceSample" description="Run a sample that exhibits the usage of DataSource with and without properties"> <antcall target="run">
@@ -90,71 +74,9 @@
9074
</antcall>
9175
</target>
9276

93-
94-
<target name="UCPSample" description="Run a sample that exhibits the use Universal Connection Pool (UCP) "> <antcall target="run">
95-
<param name="class.file.name" value="UCPSample" />
96-
</antcall>
97-
</target>
98-
99-
100-
<target name="UCPWithDRCPSample" description="Run a sample that exhibits the use DRCP "> <antcall target="run">
101-
<param name="class.file.name" value="UCPWithDRCPSample" />
102-
</antcall>
103-
</target>
104-
105-
106-
<target name="UCPWithTimeoutProperties" description="Run a sample that exhibits different UCP timeout properties "> <antcall target="run">
107-
<param name="class.file.name" value="UCPWithTimeoutProperties" />
108-
</antcall>
109-
</target>
110-
111-
<target name="UCPTimeToLiveConnectionTimeout" description="Run a sample that exhibits UCP's TimeToLiveConnectionTimeout property">
112-
<antcall target="run">
113-
<param name="class.file.name" value="UCPWithTimeoutProperties" />
114-
<param name="arg.one" value="runTimeToLive" />
115-
</antcall>
116-
</target>
117-
118-
119-
<target name="UCPAbandonedConnectionTimeout" description="Run a sample that exhibits UCP's AbandonedConnectionTimeout property"> <antcall target="run">
120-
<param name="class.file.name" value="UCPWithTimeoutProperties" />
121-
<param name="arg.one" value="runAbandonedTimeout" />
122-
</antcall>
123-
</target>
124-
125-
126-
<target name="UCPInactiveConnectionTimeout" description="Run a sample that exhibits UCP's InactiveConnectionTimeout property"> <antcall target="run">
127-
<param name="class.file.name" value="UCPWithTimeoutProperties" />
128-
<param name="arg.one" value="runInactiveTimeout" />
129-
</antcall>
130-
</target>
131-
132-
133-
<target name="UCPConnectionWaitTimeout" description="Run a sample that exhibits UCP's ConnectionWaitTimeout property"> <antcall target="run">
134-
<param name="class.file.name" value="UCPWithTimeoutProperties" />
135-
<param name="arg.one" value="runConnectionWaitTimeout" />
136-
</antcall>
137-
</target>
138-
13977
<target name="DRCPSample" description="Run a sample that shows how to use DRCP"> <antcall target="run">
14078
<param name="class.file.name" value="DRCPSample" />
14179
</antcall>
14280
</target>
143-
144-
<target name="UCPConnectionHarvestingSample" description="Run a sample that exhibits Connection Harvesting feature of UCP"> <antcall target="run">
145-
<param name="class.file.name" value="UCPConnectionHarvestingSample" />
146-
</antcall>
147-
</target>
148-
149-
<target name="UCPConnectionLabelingSample" description="Run a sample that exhibits Connection Labeling feature of UCP"> <antcall target="run">
150-
<param name="class.file.name" value="UCPConnectionLabelingSample" />
151-
</antcall>
152-
</target>
153-
154-
<target name="UCPWebSessionAffinitySample" description="Run a sample that exhibits the use of Web Session Affinity"> <antcall target="run">
155-
<param name="class.file.name" value="UCPWebSessionAffinitySample" />
156-
</antcall>
157-
</target>
158-
15981
</project>
16082

0 commit comments

Comments
 (0)