blob: 9be2e75bce216686a131a75cb37c2b9187927bab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<plexus>
<components>
<component>
<role>org.codehaus.plexus.ibatis.PlexusIbatisHelper</role>
<implementation>org.codehaus.plexus.ibatis.DefaultPlexusIbatisHelper</implementation>
<role-hint>metadata</role-hint>
<configuration>
<resource>ibatis-config.xml</resource>
<properties>
<property>
<name>jdbc.driver</name>
<value>org.apache.derby.jdbc.EmbeddedDriver</value>
</property>
<property>
<name>jdbc.url</name>
<value>jdbc:derby:${plexus.home}/testdb;create=true</value>
</property>
<property>
<name>jdbc.username</name>
<value>app</value>
</property>
<property>
<name>jdbc.password</name>
<value></value>
</property>
</properties>
</configuration>
</component>
</components>
</plexus>
|