Hi Mark, If your mysql-connector is already installed, you just need to set a dependency on it in your geronimo-web.xml (since it is the geronimo specific deployment descriptor for a web app). You can do it with something like this...
<ns2:dependency>
<ns2:groupId>__the group Id___</ns2:groupId>
<ns2:artifactId>mysql-connector-java</ns2:artifactId>
<ns2:version>3.0.17</ns2:version>
<ns2:type>jar</ns2:type>
</ns2:dependency>
Hope this helps,
Viet
