You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by ar...@apache.org on 2003/07/01 09:26:37 UTC

cvs commit: db-ojb/lib commons-collections.jar p6spy.jar commons-collections-2.0.jar

arminw      2003/07/01 00:26:37

  Modified:    .        project.xml
               src/test/org/apache/ojb spy.properties
               lib      p6spy.jar
  Added:       lib      commons-collections.jar
  Removed:     lib      commons-collections-2.0.jar
  Log:
  update jars
  AND change dependencies
  in project.xml ;-)
  
  Revision  Changes    Path
  1.37      +13 -13    db-ojb/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/db-ojb/project.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- project.xml	10 Jun 2003 06:17:31 -0000	1.36
  +++ project.xml	1 Jul 2003 07:26:37 -0000	1.37
  @@ -130,7 +130,7 @@
   
       <dependency>
         <id>ant</id>
  -      <version>1.5</version>
  +      <version>1.5.3</version>
         <url>http://jakarta.apache.org/ant/</url>
         <!-- optional.jar also required -->
       </dependency>
  @@ -144,13 +144,13 @@
   
       <dependency>
         <id>commons-beanutils</id>
  -      <version>1.4-dev</version>
  +      <version>1.6</version>
         <url>http://jakarta.apache.org/commons/</url>
       </dependency>
   
       <dependency>
         <id>commons-collections</id>
  -      <version>2.0</version>
  +      <version>2.1</version>
         <url>http://jakarta.apache.org/commons/</url>
       </dependency>
   
  @@ -214,20 +214,20 @@
   
       <dependency>
         <id>junit</id>
  -      <version>3.8</version>
  +      <version>3.8.1</version>
         <url>http://www.junit.org/</url>
         <!-- License: Common Public License -->
       </dependency>
   
       <dependency>
         <id>log4j</id>
  -      <version>1.2.6</version>
  +      <version>1.2.8</version>
         <url>http://jakarta.apache.org/log4j/</url>
       </dependency>
   
       <dependency>
         <id>p6spy</id>
  -      <version>1.0</version>
  +      <version>1.2</version>
         <url>http://www.p6spy.com/</url>
         <!-- License: Apache Software License -->
       </dependency>
  @@ -241,22 +241,22 @@
   
       <dependency>
         <id>torque</id>
  -      <version>3.0</version>
  +      <version>3.0.2</version>
         <url>http://db.apache.org/torque/</url>
       </dependency>
   
       <dependency>
         <id>velocity</id>
  -      <version>1.3</version>
  +      <version>1.3.1</version>
         <url>http://jakarta.apache.org/velocity/</url>
       </dependency>
  -    
  +
       <dependency>
         <id>xalan</id>
         <version>2.4</version>
         <url>http://xml.apache.org/xalan-j/</url>
       </dependency>
  -   
  +
       <dependency>
         <id>xerces</id>
         <version>2.0.2</version>
  @@ -294,12 +294,12 @@
   
     <reports>
       <!--
  -    
  +
       <report>maven-jdepend-plugin</report>
       <report>maven-junit-report-plugin</report>
  -    
  +
       These reports requires compilation which doesn't work yet.
  -    
  +
       -->
       <report>maven-checkstyle-plugin</report>
       <report>maven-changelog-plugin</report>
  
  
  
  1.4       +37 -10    db-ojb/src/test/org/apache/ojb/spy.properties
  
  Index: spy.properties
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/test/org/apache/ojb/spy.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- spy.properties	14 May 2003 22:16:33 -0000	1.3
  +++ spy.properties	1 Jul 2003 07:26:37 -0000	1.4
  @@ -53,7 +53,7 @@
   # the mysql open source driver
   #realdriver=org.gjt.mm.mysql.Driver
   
  -# the mysql open source driver
  +# the postgresql open source driver
   #realdriver=org.postgresql.Driver
   
   # the hsqldb jdbc driver (OJB testsuite and tutorials)
  @@ -64,12 +64,37 @@
   #specifies a third driver to use
   realdriver3=
   
  +
  +#the DriverManager class sequentially tries every driver that is
  +#registered to find the right driver.  In some instances, it's possible to
  +#load up the realdriver before the p6spy driver, in which case your connections
  +#will not get wrapped as the realdriver will "steal" the connection before
  +#p6spy sees it.  Set the following property to "true" to cause p6spy to
  +#explicitily deregister the realdrivers
  +deregisterdrivers=false
  +
   ################################################################
   # P6LOG SPECIFIC PROPERTIES                                    #
   ################################################################
   # no properties currently available
   
   ################################################################
  +# EXECUTION THRESHOLD PROPERTIES                               #
  +################################################################
  +# This feature applies to the standard logging of P6Spy.       #
  +# While the standard logging logs out every statement          #
  +# regardless of its execution time, this feature puts a time   #
  +# condition on that logging.  Only statements that have taken  #
  +# longer than the time specified (in milliseconds) will be     #
  +# logged.  This way it is possible to see only statements that #
  +# have exceeded some high water mark.                          #
  +# This time is reloadable.                                     #
  +#
  +# executionthreshold=integer time (milliseconds)
  +#
  +executionthreshold=
  +
  +################################################################
   # P6OUTAGE SPECIFIC PROPERTIES                                 #
   ################################################################
   # Outage Detection
  @@ -79,7 +104,7 @@
   # statement that surpasses the configurable time boundary during its execution.
   # When this feature is enabled, no other statements are logged except the long
   # running statements. The interval property is the boundary time set in seconds.
  -# For example, if this is set to 2, then any statement requiring at least 2 
  +# For example, if this is set to 2, then any statement requiring at least 2
   # seconds will be logged. Note that the same statement will continue to be logged
   # for as long as it executes. So if the interval is set to 2, and the query takes
   # 11 seconds, it will be logged 5 times (at the 2, 4, 6, 8, 10 second intervals).
  @@ -94,16 +119,17 @@
   # COMMON PROPERTIES                                            #
   ################################################################
   
  -# comma separated list of tables to include
  +# filter what is logged
  +filter=false
  +
  +# comma separated list of tables to include when filtering
   include     =
  -# comma separated list of tables to exclude
  +# comma separated list of tables to exclude when filtering
   exclude     =
   
  -# sql expression to evaluate if using regex
  -sqlexpression = 
  +# sql expression to evaluate if using regex filtering
  +sqlexpression =
   
  -# filter what is logged
  -filter=false 
   
   # turn on tracing
   autoflush   = true
  @@ -118,7 +144,8 @@
   #commit, rollback and result are valid values
   excludecategories=info,debug,result,batch
   
  -#allows you to use a regex engine or your own matching engine to determine 
  +
  +#allows you to use a regex engine or your own matching engine to determine
   #which statements to log
   #
   #stringmatcher=com.p6spy.engine.common.GnuRegexMatcher
  @@ -182,7 +209,7 @@
   #################################################################
   # DataSource properties                                         #
   #                                                               #
  -# If you are using the DataSource support to intercept calls    # 
  +# If you are using the DataSource support to intercept calls    #
   # to a DataSource that requires properties for proper setup,    #
   # define those properties here. Use name value pairs, separate  #
   # the name and value with a semicolon, and separate the         #
  
  
  
  1.3       +377 -323  db-ojb/lib/p6spy.jar
  
  	<<Binary file>>
  
  
  1.1                  db-ojb/lib/commons-collections.jar
  
  	<<Binary file>>