java.lang.NoClassDefFoundError
When deploying a newly built Libreplan, this error came up on Tomcat and Glassfish. It seems to be related to Hibernate 4 not needing Hibernate Annotations anymore. I have removed two references in the pom.xml files, and the error was gone, while the application still runs smoothly.
This commit is contained in:
parent
16f3a2ac84
commit
581eef7249
2 changed files with 0 additions and 5 deletions
|
|
@ -26,10 +26,6 @@
|
|||
<groupId>org.hibernate</groupId>
|
||||
<artifactId>hibernate-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hibernate</groupId>
|
||||
<artifactId>hibernate-annotations</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hibernate</groupId>
|
||||
<artifactId>hibernate-ehcache</artifactId>
|
||||
|
|
|
|||
1
pom.xml
1
pom.xml
|
|
@ -237,7 +237,6 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hibernate</groupId>
|
||||
<artifactId>hibernate-annotations</artifactId>
|
||||
<version>3.5.6-Final</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue