Problema com Hibernate!

Bom estou tentando executar o meu arquivo GerarTabela ele acusa o seguinte erro:

log4j:WARN No appenders could be found for logger (org.hibernate.cfg.annotations.Version).
log4j:WARN Please initialize the log4j system properly.
Exception in thread "main" org.hibernate.HibernateException: The dialect was not set. Set the property hibernate.dialect.
        at org.hibernate.dialect.Dialect.getDialect(Dialect.java:649)
        at org.hibernate.dialect.Dialect.getDialect(Dialect.java:671)
        at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:86)
        at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:61)
        at br.com.scm.utils.GerarTabelas.main(GerarTabelas.java:13)
Java Result: 1

Não sei o que pode estar acontecendo. Por favor alguem me ajude.

Você colocou o dialeto no seu arquivo de configuração do hibernate?

é a propriedade “hibernate.dialect”

O meu arquivo Hibernate.properties está assim:

hibernate.dialect org.hibernate.dialect.MySQLDialect
hibernate.connection.driver_class org.gjt.mm.mysql.Driver
hibernate.connection.url jdbc:mysql://localhost:3306/scm
hibernate.connection.username root
hibernate.connection.password 
hibernate.show_sql true
hibernate.format_sql true

Até onde sei tem que ter = entre os mapeamentos

hibernate.dialect=org.hibernate.dialect.MySQLDialect  
hibernate.connection.driver_class=org.gjt.mm.mysql.Driver  
hibernate.connection.url=jdbc:mysql://localhost:3306/scm  
hibernate.connection.username=root  
hibernate.connection.password=  
hibernate.show_sql=true
hibernate.format_sql=true

E tem certeza que esse é o Driver do MySql? ta usando a versão antiga?

Se quiser ver um pouco mais sobre properties

http://www.guj.com.br/java.tutorial.artigo.35.1.guj