diff options
author | Brett Porter <brett@apache.org> | 2007-03-01 04:37:35 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2007-03-01 04:37:35 +0000 |
commit | 52a40d41b77a6ef0d079c43099f3a426701e79b2 (patch) | |
tree | 84c204cd9e30bc4ddab98685c9e816be7072761c /archiva-plexus-runtime | |
parent | 8c9fc7a00445b8a8e7f1a04284d7ade9191d5a61 (diff) | |
download | archiva-52a40d41b77a6ef0d079c43099f3a426701e79b2.tar.gz archiva-52a40d41b77a6ef0d079c43099f3a426701e79b2.zip |
add archiva database
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@513135 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-plexus-runtime')
-rw-r--r-- | archiva-plexus-runtime/src/conf/plexus.xml | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/archiva-plexus-runtime/src/conf/plexus.xml b/archiva-plexus-runtime/src/conf/plexus.xml index 0a6e1be68..87a99722b 100644 --- a/archiva-plexus-runtime/src/conf/plexus.xml +++ b/archiva-plexus-runtime/src/conf/plexus.xml @@ -71,7 +71,29 @@ </property> <property> <name>url</name> - <value>jdbc:derby:${plexus.home}/database;create=true</value> + <value>jdbc:derby:${plexus.home}/data/users/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/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:${plexus.home}/data/archiva/database;create=true</value> </property> <property> <name>username</name> |