Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 54489 invoked from network); 29 Dec 2006 22:47:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Dec 2006 22:47:07 -0000 Received: (qmail 92279 invoked by uid 500); 29 Dec 2006 22:47:14 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 92255 invoked by uid 500); 29 Dec 2006 22:47:13 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 92242 invoked by uid 99); 29 Dec 2006 22:47:13 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Dec 2006 14:47:13 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Dec 2006 14:47:06 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 632E11A981A; Fri, 29 Dec 2006 14:46:12 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r491125 - in /maven/continuum/branches/key-based-refactor/continuum-model: pom.xml src/main/resources/ src/main/resources/log4j.properties Date: Fri, 29 Dec 2006 22:46:12 -0000 To: continuum-commits@maven.apache.org From: rinku@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061229224612.632E11A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rinku Date: Fri Dec 29 14:46:11 2006 New Revision: 491125 URL: http://svn.apache.org/viewvc?view=rev&rev=491125 Log: o updated jpox plugin configuration for jpox plugin updates. o added log4j.properties config being used by jpox plugin. Added: maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/ maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/log4j.properties (with props) Modified: maven/continuum/branches/key-based-refactor/continuum-model/pom.xml Modified: maven/continuum/branches/key-based-refactor/continuum-model/pom.xml URL: http://svn.apache.org/viewvc/maven/continuum/branches/key-based-refactor/continuum-model/pom.xml?view=diff&rev=491125&r1=491124&r2=491125 ============================================================================== --- maven/continuum/branches/key-based-refactor/continuum-model/pom.xml (original) +++ maven/continuum/branches/key-based-refactor/continuum-model/pom.xml Fri Dec 29 14:46:11 2006 @@ -109,12 +109,36 @@ org.codehaus.mojo jpox-maven-plugin ${jpox.plugin.version} - - org.hsqldb.jdbcDriver - sa - jdbc:hsqldb:mem:continuum + ${project.build.directory}/schema.sql - + + + javax.jdo.option.ConnectionDriverName + org.hsqldb.jdbcDriver + + + javax.jdo.option.ConnectionURL + jdbc:hsqldb:mem:continuum + + + javax.jdo.option.ConnectionUserName + sa + + + javax.jdo.option.ConnectionPassword + + + + log4j.configuration + file:${basedir}/src/main/resources/log4j.properties + + + + org.jpox.autoCreateTables + true + + + Added: maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/log4j.properties URL: http://svn.apache.org/viewvc/maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/log4j.properties?view=auto&rev=491125 ============================================================================== --- maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/log4j.properties (added) +++ maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/log4j.properties Fri Dec 29 14:46:11 2006 @@ -0,0 +1,21 @@ +# http://www.jpox.org/docs/1_1/logging.html +# Define the destination and format of our logging +log4j.appender.A1=org.apache.log4j.FileAppender +log4j.appender.A1.File=target/jpox.log +log4j.appender.A1.layout=org.apache.log4j.PatternLayout +log4j.appender.A1.layout.ConversionPattern=%d{HH:mm:ss,SSS} (%t) %-5p [%c] - %m%n + +# JPOX Categories +log4j.category.JPOX.JDO=INFO, A1 +log4j.category.JPOX.Cache=INFO, A1 +log4j.category.JPOX.MetaData=INFO, A1 +log4j.category.JPOX.General=INFO, A1 +log4j.category.JPOX.Utility=INFO, A1 +log4j.category.JPOX.Transaction=INFO, A1 +log4j.category.JPOX.RDBMS=DEBUG, A1 +log4j.category.JPOX.ClassLoading=DEBUG, A1 +log4j.category.JPOX.PLUGIN=DEBUG, A1 +log4j.category.JPOX.Store.Poid=DEBUG, A1 + +log4j.category.JPOX.Enhancer=DEBUG, A1 +log4j.category.JPOX.SchemaTool=DEBUG, A1 \ No newline at end of file Propchange: maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/branches/key-based-refactor/continuum-model/src/main/resources/log4j.properties ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision"