Criar Tabela Hibernate

Bom pessoal estou com seguinte problem eu uso Mysql mas quando eu executo o meu gerar pega as configurações do h2

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
 <persistence-unit name="JMedicSys" transaction-type="RESOURCE_LOCAL">
 
 
 <provider>org.hibernate.ejb.HibernatePersistence</provider>  
 
 <class>br.med.fetus.entity.Convenio</class>
 <properties>
 	<property name="hibernate.connection.username" value="root"/>
 	<property name="hibernate.connection.password" value="senha"/>
 	<property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
 	<property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/fetus"/>
	<property name="hibernate.hbm2dll.auto" value="update"/>  	
	<property name="hibernate.sql_show" value="true"/>
    <property name="hibernate.cache.provider_class" value="org.hibernate.cache.NoCacheProvider"/>
    <property name="hibernate.connection.dialect" value="org.hibernate.dialect.MySQLDialect"/>
 </properties> 
 
 
 </persistence-unit>
 </persistence>

[code][
Jul 15, 2013 12:18:03 AM org.hibernate.annotations.common.Version
INFO: HCANN000001: Hibernate Commons Annotations {4.0.2.Final}
Jul 15, 2013 12:18:03 AM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.2.3.Final}
Jul 15, 2013 12:18:03 AM org.hibernate.cfg.Environment
INFO: HHH000205: Loaded properties from resource hibernate.properties: {hibernate.connection.driver_class=org.h2.Driver, hibernate.dialect=org.hibernate.dialect.H2Dialect, hibernate.max_fetch_depth=5, hibernate.format_sql=true, hibernate.generate_statistics=true, hibernate.connection.username=sa, hibernate.connection.url=jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE, hibernate.bytecode.use_reflection_optimizer=false, hibernate.jdbc.batch_versioned_data=true, hibernate.connection.pool_size=5}
Jul 15, 2013 12:18:03 AM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
Jul 15, 2013 12:18:03 AM org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
INFO: HHH000402: Using Hibernate built-in connection pool (not for production use!)
Jul 15, 2013 12:18:03 AM org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
INFO: HHH000115: Hibernate connection pool size: 5
Jul 15, 2013 12:18:03 AM org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
INFO: HHH000006: Autocommit mode: true
Jul 15, 2013 12:18:03 AM org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
INFO: HHH000401: using driver [com.mysql.jdbc.Driver] at URL [jdbc:mysql://localhost:3306/fetus]
Jul 15, 2013 12:18:03 AM org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
INFO: HHH000046: Connection properties: {user=root, password=****, dialect=org.hibernate.dialect.MySQLDialect, autocommit=true, release_mode=auto}
Jul 15, 2013 12:18:04 AM org.hibernate.dialect.Dialect
INFO: HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
Jul 15, 2013 12:18:04 AM org.hibernate.dialect.H2Dialect
WARN: HHH000431: Unable to determine H2 database version, certain features may not work
Jul 15, 2013 12:18:04 AM org.hibernate.engine.transaction.internal.TransactionFactoryInitiator initiateService
INFO: HHH000268: Transaction strategy: org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory
Jul 15, 2013 12:18:04 AM org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory
INFO: HHH000397: Using ASTQueryTranslatorFactory
Jul 15, 2013 12:18:04 AM org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl stop
INFO: HHH000030: Cleaning up connection pool [jdbc:mysql://localhost:3306/fetus]

/code]

qual servidor vc está utilizando?