The question may seem stupid, but I can't ...!
There is such a project. When deploy error pops up:
"Caused by: org.hibernate.MappingException: Could not determine the type for: java.util.Set, at table: Files, for columns: [org.hibernate.mapping.Column (columns)]"
In essence, there is a field in File.java:
private Set<FileColumn> columns;
So it seemed to me that you need to add something like:
<dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> <scope>provided</scope> </dependency>
I didn’t manage to add it to the dependecies section of the "pom.xml" section. When compiled, Maven says:
"'dependencies.dependency.version' for org.hibernate.javax.persistence: hibernate-jpa-2.0-api: jar is missing"
Question: how to add (and most importantly where exactly) this jar-nickname? Describe the sequence of manipulations in IDEA. You are welcome!!!