Author: handyande Date: Fri Mar 2 05:41:26 2007 New Revision: 513754 URL: http://svn.apache.org/viewvc?view=rev&rev=513754 Log: Archiva now requires a DB
Modified: maven/sandbox/trunk/enterprise/enterprise-runtime/src/conf/plexus.xml Modified: maven/sandbox/trunk/enterprise/enterprise-runtime/src/conf/plexus.xml URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/enterprise/enterprise-runtime/src/conf/plexus.xml?view=diff&rev=513754&r1=513753&r2=513754 ============================================================================== --- maven/sandbox/trunk/enterprise/enterprise-runtime/src/conf/plexus.xml (original) +++ maven/sandbox/trunk/enterprise/enterprise-runtime/src/conf/plexus.xml Fri Mar 2 05:41:26 2007 @@ -76,6 +76,28 @@ </properties> </resource> <resource> + <name>jdbc/archiva</name> + <type>javax.sql.DataSource</type> + <properties> + <property> + <name>driverClassName</name> + <value>org.apache.derby.jdbc.EmbeddedDriver</value> + </property> + <property> + <name>url</name> + <value>jdbc:derby:${enterprise.dataDir}/archiva/database;create=true</value> + </property> + <property> + <name>username</name> + <value>sa</value> + </property> + <property> + <name>password</name> + <value></value> + </property> + </properties> + </resource> + <resource> <name>jdbc/continuum</name> <type>javax.sql.DataSource</type> <properties>