Hi I don't want to create my database table from the POJO but want to create database table and POJO separately and them map them of my own for this I made following changes into pom.xml
<!-- Database settings --> <dbunit.dataTypeFactoryName>org.dbunit.dataset.datatype.DefaultDataTypeFacto ry</dbunit.dataTypeFactoryName> <dbunit.operation.type>UPDATE</dbunit.operation.type> <hibernate.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</hibernate.dial ect> <jdbc.groupId>mysql</jdbc.groupId> <jdbc.artifactId>mysql-connector-java</jdbc.artifactId> <jdbc.version>5.0.5</jdbc.version> <jdbc.driverClassName>com.mysql.jdbc.Driver</jdbc.driverClassName> <jdbc.url><![CDATA[jdbc:mysql://localhost/PubStats?createDatabaseIfNotExist= true&useUnicode=true&characterEncoding=utf-8]]></jdbc.url> <jdbc.username>root</jdbc.username> <jdbc.password>root</jdbc.password> And I am running mvn jetty:run-war It gives me build error Can anyone solve my problem? Regards Anshu --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]