1 <?xml version="1.0" encoding="ISO-8859-1"?>
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
11 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
27 <role>org.codehaus.plexus.logging.LoggerManager</role>
28 <implementation>org.codehaus.plexus.logging.log4j.Log4JLoggerManager</implementation>
29 <lifecycle-handler>basic</lifecycle-handler>
32 <threshold>DEBUG</threshold>
33 <default-appender>console</default-appender>
37 <threshold>DEBUG</threshold>
38 <type>org.apache.log4j.ConsoleAppender</type>
39 <!-- <conversion-pattern>%d [%t] %-5p %-30c{1} - %m%n</conversion-pattern> -->
40 <conversion-pattern>%r [%t] %-5p %c %x - %m%n</conversion-pattern>
44 <!-- Help identify bugs during testing -->
46 <hierarchy>org.apache.maven</hierarchy>
50 <hierarchy>org.codehaus.plexus.security</hierarchy>
53 <!-- squelch noisy objects (for now) -->
55 <hierarchy>org.codehaus.plexus.mailsender.MailSender</hierarchy>
59 <hierarchy>org.quartz</hierarchy>
63 <hierarchy>org.apache.jasper</hierarchy>
67 <hierarchy>com.opensymphony.xwork</hierarchy>
71 <hierarchy>com.opensymphony.webwork</hierarchy>
75 <hierarchy>org.codehaus.plexus.PlexusContainer</hierarchy>
79 <hierarchy>JPOX</hierarchy>
83 <hierarchy>freemarker</hierarchy>
87 <hierarchy>freemarker</hierarchy>
96 <role>org.codehaus.plexus.jdo.JdoFactory</role>
97 <role-hint>users</role-hint>
98 <implementation>org.codehaus.plexus.jdo.DefaultConfigurableJdoFactory</implementation>
101 <!-- HSQLDB Configuration -->
103 NOTE: NO NOT USE THIS CONFIGURATION FOR A PRODUCTION SYSTEM.
104 HSQLDB keeps all data in memory at all times.
106 NOTE: JPOX 1.1.1 won't create the tables on start
107 http://www.jpox.org/servlet/jira/browse/CORE-2946
111 <driverName>org.hsqldb.jdbcDriver</driverName>
112 <url>jdbc:hsqldb:mem:test</url>
113 <userName>sa</userName>
114 <password></password>
117 <!-- Apache Derby Configuration -->
118 <driverName>org.apache.derby.jdbc.EmbeddedDriver</driverName>
119 <url>jdbc:derby:${basedir}/target/repoaccess/database;create=true</url>
120 <userName>sa</userName>
121 <password></password>
123 <!-- MySql Configuration -->
125 <driverName>com.mysql.jdbc.Driver</driverName>
126 <url>jdbc:mysql://localhost/archiva</url>
127 <userName>archiva</userName>
128 <password>archiva</password>
131 <!-- Postgresql Configuration -->
133 <driverName>org.postgresql.Driver</driverName>
134 <url>jdbc:postgresql://localhost/continuum</url>
135 <userName>username</userName>
136 <password></password>
139 <!-- JPOX and JDO configuration -->
140 <persistenceManagerFactoryClass>org.jpox.PersistenceManagerFactoryImpl</persistenceManagerFactoryClass>
143 <name>javax.jdo.PersistenceManagerFactoryClass</name>
144 <value>org.jpox.PersistenceManagerFactoryImpl</value>
147 <name>org.jpox.autoCreateSchema</name>
151 <name>org.jpox.autoStartMechanism</name>
152 <value>SchemaTable</value>
155 <name>org.jpox.autoStartMechanismMode</name>
156 <value>Ignored</value>
159 <name>org.jpox.validateTables</name>
163 <name>org.jpox.validateConstraints</name>
167 <name>org.jpox.transactionIsolation</name>
168 <value>READ_UNCOMMITTED</value>
171 <name>org.jpox.poid.transactionIsolation</name>
172 <value>READ_UNCOMMITTED</value>
175 <name>org.jpox.rdbms.dateTimezone</name>
176 <value>JDK_DEFAULT_TIMEZONE</value>