Author: psteitz
Date: Tue Jan 1 22:17:01 2008
New Revision: 608020
URL: http://svn.apache.org/viewvc?rev=608020&view=rev
Log:
Added missing httpclient deps, made some defaults more reasonable.
Modified:
commons/sandbox/performance/trunk/build-dbcp.xml
commons/sandbox/performance/trunk/build-pool.xml
commons/sandbox/performance/trunk/build.properties
commons/sandbox/performance/trunk/logging.properties
Modified: commons/sandbox/performance/trunk/build-dbcp.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/performance/trunk/build-dbcp.xml?rev=608020&r1=608019&r2=608020&view=diff
==============================================================================
--- commons/sandbox/performance/trunk/build-dbcp.xml (original)
+++ commons/sandbox/performance/trunk/build-dbcp.xml Tue Jan 1 22:17:01 2008
@@ -83,9 +83,16 @@
dest="${lib}/commons-logging-1.0.4.jar"
usetimestamp="true"/>
</target>
+
+ <target name="get-httpclient">
+ <get
+
src="${mavenRepo}/commons-httpclient/commons-httpclient/3.0.1/commons-httpclient-3.0.1.jar"
+ dest="${lib}/commons-httpclient-3.0.1.jar"
+ usetimestamp="true"/>
+ </target>
<target name="get-deps"
-
depends="get-collections,get-beanutils,get-digester,get-math,get-logging">
+
depends="get-collections,get-beanutils,get-digester,get-math,get-logging,get-httpclient">
</target>
<target name="compile" depends="clean,init,get-deps">
Modified: commons/sandbox/performance/trunk/build-pool.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/performance/trunk/build-pool.xml?rev=608020&r1=608019&r2=608020&view=diff
==============================================================================
--- commons/sandbox/performance/trunk/build-pool.xml (original)
+++ commons/sandbox/performance/trunk/build-pool.xml Tue Jan 1 22:17:01 2008
@@ -82,8 +82,15 @@
usetimestamp="true"/>
</target>
+ <target name="get-httpclient">
+ <get
+
src="${mavenRepo}/commons-httpclient/commons-httpclient/3.0.1/commons-httpclient-3.0.1.jar"
+ dest="${lib}/commons-httpclient-3.0.1.jar"
+ usetimestamp="true"/>
+ </target>
+
<target name="get-deps"
-
depends="get-collections,get-beanutils,get-digester,get-math,get-logging">
+
depends="get-collections,get-beanutils,get-digester,get-math,get-logging,get-httpclient">
</target>
<target name="compile" depends="clean,init,get-deps">
Modified: commons/sandbox/performance/trunk/build.properties
URL:
http://svn.apache.org/viewvc/commons/sandbox/performance/trunk/build.properties?rev=608020&r1=608019&r2=608020&view=diff
==============================================================================
--- commons/sandbox/performance/trunk/build.properties (original)
+++ commons/sandbox/performance/trunk/build.properties Tue Jan 1 22:17:01 2008
@@ -23,6 +23,6 @@
jdbc-jar=../../mysql/mysql-connector-java-5.0.2.jar
# Replace with full path to versions of pool, dbcp jars you want to test with
-pool-jar=../../commons-pool-1.2/commons-pool-1.2.jar
+pool-jar=../../.m2/repository/commons-pool/commons-pool/1.3/commons-pool-1.3.jar
dbcp-jar=../../.m2/repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar
Modified: commons/sandbox/performance/trunk/logging.properties
URL:
http://svn.apache.org/viewvc/commons/sandbox/performance/trunk/logging.properties?rev=608020&r1=608019&r2=608020&view=diff
==============================================================================
--- commons/sandbox/performance/trunk/logging.properties (original)
+++ commons/sandbox/performance/trunk/logging.properties Tue Jan 1 22:17:01
2008
@@ -29,7 +29,7 @@
java.util.logging.FileHandler.level=FINE
java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
-java.util.logging.FileHandler.pattern=%h/dbcpTest/dbcpSoak%u.log
+java.util.logging.FileHandler.pattern=%h/performance%u.log
java.util.logging.FileHandler.limit=1000000