Hibernate Com Firebird

To usando o firebird com o hibernate e ta dando um erro:

net.sf.hibernate.HibernateException: The dialect was not set. Set the property hibernate.dialect.
	at net.sf.hibernate.dialect.Dialect.getDialect(Dialect.java:337)
	at net.sf.hibernate.dialect.Dialect.getDialect(Dialect.java:358)
	at net.sf.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:57)
	at net.sf.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:48)
	at net.sf.hibernate.tool.hbm2ddl.SchemaExport.main(SchemaExport.java:303)

meu hibernate.properties

hibernate.dialect=net.sf.hibernate.dialect.InterbaseDialect
hibernate.connection.driver_class = org.firebirdsql.jdbc.FBDriver hibernate.connection.url = jdbc:firebirdsql:localhost/3050:C:	esteshibernate.gdb hibernate.connection.username = sysdba
hibernate.connection.password = masterkey

Alguém sabe o que ta acontecendo?

Onde você está setando a dialetc (1 ou 3)?

Isso quer dizer que você não tem um método set para a variável Dialect, ou você não usou esse método. Na sua classe você deve ter um método get e set para cada variável. Caso não tenha vai causar exception.