It appears that the taglist report is trying to validate some hibernate config
we have in our resources directory.
One file in question is blowing up the report, is it possible to skip this
single file? The problem lines look like this:
<join table="t_foo">
<key column=" id" unique="true" />
<many-to-one name="prop" column="prop_id"
not-null="true" lazy="false" />
</join>
The report dies with this error:
Caused by: org.hibernate.MappingException: class <someclass> not found while
looking for property: prop
at
org.hibernate.util.ReflectHelper.reflectedPropertyClass(ReflectHelper.java:97)
at org.hibernate.mapping.ToOne.setTypeUsingReflection(ToOne.java:81)
at org.hibernate.cfg.HbmBinder.createProperty(HbmBinder.java:2193)
at org.hibernate.cfg.HbmBinder.bindJoin(HbmBinder.java:1014)
at
org.hibernate.cfg.HbmBinder.createClassProperties(HbmBinder.java:2126)
at
org.hibernate.cfg.HbmBinder.createClassProperties(HbmBinder.java:2060)
at
org.hibernate.cfg.HbmBinder.bindRootPersistentClassCommonValues(HbmBinder.java:381)
at org.hibernate.cfg.HbmBinder.bindRootClass(HbmBinder.java:295)
at org.hibernate.cfg.HbmBinder.bindRoot(HbmBinder.java:166)
at org.hibernate.cfg.Configuration.add(Configuration.java:702)
at
org.hibernate.cfg.Configuration.addInputStream(Configuration.java:537)
at org.hibernate.cfg.Configuration.addResource(Configuration.java:599)
... 30 more
Caused by: java.lang.ClassNotFoundException: <someclass>
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
Any suggestions?