I am new in Hibernate and Maven. I want to use hibernateOGM. I can successfully build my code but if I run it I see these Information:
Aug 12, 2013 12:00:15 PM org.hibernate.annotations.common.Version <clinit>
INFO: HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
Aug 12, 2013 12:00:15 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.1.9.Final}
Aug 12, 2013 12:00:15 PM org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
Aug 12, 2013 12:00:15 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
my hibernate.cfg.xml
and hbm.xml
are located in src/main/resources . How can I solve this problem
Did you try placing
hibernate.cfg.xml
insrc/main/resources/META-INF
?