|
1 | 1 | <?xml version="1.0"?> |
2 | 2 |
|
3 | 3 | <!-- |
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. |
5 | 5 |
|
6 | 6 | NAME |
7 | 7 | build.xml - For compiling and running connection management samples |
8 | 8 |
|
9 | 9 | DESCRIPTION |
10 | 10 | Use this build.xml for compiling and running connection |
11 | 11 | management related code samples. |
12 | | -
|
13 | | - MODIFIED (MM/DD/YY) |
14 | | - nbsundar 01/14/16 - update |
15 | | - nbsundar 02/16/15 - Creation |
16 | | -
|
17 | 12 | --> |
18 | 13 | <project name="OracleJdbcSamples" default="compile"> |
19 | 14 | <description>Build and run Oracle Jdbc Samples</description> |
|
44 | 39 | <javac srcdir="src" destdir="classes" debug="yes" includeantruntime="false" fork="yes" executable="${jdk.javac}"> |
45 | 40 | <classpath refid="java.classpath" /> |
46 | 41 | <include name="**/*.java" /> |
47 | | - <exclude name="**/.ade_path/*.java" /> |
48 | 42 | </javac> |
49 | 43 |
|
50 | 44 | </target> |
|
66 | 60 | <echo> ============================================== </echo> |
67 | 61 | <echo> (1) ant DataSourceSample </echo> |
68 | 62 | <echo> (2) ant ProxySessionSample </echo> |
69 | | - <echo> (3) ant UCPSample </echo> |
70 | | - <echo> (4) ant UCPWithDRCPSample </echo> |
71 | 63 | <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> |
80 | 64 | <echo> ============================================== </echo> |
81 | 65 |
|
82 | 66 | <target name="DataSourceSample" description="Run a sample that exhibits the usage of DataSource with and without properties"> <antcall target="run"> |
|
90 | 74 | </antcall> |
91 | 75 | </target> |
92 | 76 |
|
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 | | - |
139 | 77 | <target name="DRCPSample" description="Run a sample that shows how to use DRCP"> <antcall target="run"> |
140 | 78 | <param name="class.file.name" value="DRCPSample" /> |
141 | 79 | </antcall> |
142 | 80 | </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 | | - |
159 | 81 | </project> |
160 | 82 |
|
0 commit comments