0 Replies Latest reply on Jun 1, 2012 2:01 PM by frank_luo

    how to deploy jtds as a database driver using jboss-as-maven-plugin

    frank_luo

      As discussed at https://community.jboss.org/message/617978, jtds is a jdbc 3 driver, hence the following needs to go to standalone.xml.

       

      <driver name="JTDS" module="net.sourceforge.jtds">

                 <driver-class>net.sourceforge.jtds.jdbc.Driver</driver-class> 
                 <xa-datasource-class>net.sourceforge.jtds.jdbcx.JtdsDataSource</xa-datasource-class>
      </driver>

       

      It will be great if someone can post a sample how to do it with jboss-as-maven-plugin.