|
Revision 2938
(checked in by douglm, 3 years ago)
|
Skip a couple of jars in jbossService.xml
Add a carddav datasource definition to configurations and update properties appropriately
Fix up prefixing in caldav test so that it can be used to test carddav. Add some carddav tests
Comment out the javadocs group definitions for calendarapi - it was breaking.
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- See http://www.jboss.org/community/wiki/Multiple1PC for information about local-tx-datasource --> |
|---|
| 4 |
<!-- $Id: mysql-ds.xml 88948 2009-05-15 14:09:08Z jesper.pedersen $ --> |
|---|
| 5 |
<!-- Datasource config for MySQL using 3.0.9 available from: |
|---|
| 6 |
http://www.mysql.com/downloads/api-jdbc-stable.html |
|---|
| 7 |
--> |
|---|
| 8 |
|
|---|
| 9 |
<datasources> |
|---|
| 10 |
<local-tx-datasource> |
|---|
| 11 |
<jndi-name>CardDS</jndi-name> |
|---|
| 12 |
<connection-url>jdbc:postgresql://localhost:5433/bwcard3p6</connection-url> |
|---|
| 13 |
<driver-class>org.postgresql.Driver</driver-class> |
|---|
| 14 |
<user-name>bedework</user-name> |
|---|
| 15 |
<password></password> |
|---|
| 16 |
<!-- sql to call when connection is created. Can be anything, select 1 is valid for PostgreSQL |
|---|
| 17 |
<new-connection-sql>select 1</new-connection-sql> |
|---|
| 18 |
--> |
|---|
| 19 |
|
|---|
| 20 |
<!-- sql to call on an existing pooled connection when it is obtained from pool. Can be anything, select 1 is valid for PostgreSQL |
|---|
| 21 |
<check-valid-connection-sql>select 1</check-valid-connection-sql> |
|---|
| 22 |
--> |
|---|
| 23 |
|
|---|
| 24 |
<!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) --> |
|---|
| 25 |
<metadata> |
|---|
| 26 |
<type-mapping>PostgreSQL 8.0</type-mapping> |
|---|
| 27 |
</metadata> |
|---|
| 28 |
</local-tx-datasource> |
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
</datasources> |
|---|
| 32 |
|
|---|