Guest User

Untitled

a guest
Apr 28th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.82 KB | None | 0 0
  1. Debugging java.lang.IncompatibleClassChangeError: Implementing class errors (Spring/Hibernate/Struts)
  2. [INFO] [snip MyProjectName]
  3. [INFO] - org.hibernate:hibernate-entitymanager:jar:3.5.6-Final:compile
  4. [INFO] +- org.hibernate:hibernate-core:jar:3.5.6-Final:compile
  5. [INFO] - org.hibernate:hibernate-annotations:jar:3.5.6-Final:compile
  6. [INFO] - org.hibernate:hibernate-commons-annotations:jar:3.2.0.Final:compile
  7.  
  8. [INFO] [snip MyProjectName]
  9. [INFO] +- org.springframework:org.springframework.orm:jar:3.1.1.RELEASE:compile
  10. [INFO] | +- org.springframework:org.springframework.jdbc:jar:3.1.1.RELEASE:compile
  11. [INFO] | - org.springframework:org.springframework.transaction:jar:3.1.1.RELEASE:compile
  12. [INFO] +- org.springframework:org.springframework.web:jar:3.1.1.RELEASE:compile
  13. [INFO] | - org.springframework:org.springframework.aop:jar:3.1.1.RELEASE:compile
  14. [INFO] +- org.springframework:org.springframework.beans:jar:3.1.1.RELEASE:compile
  15. [INFO] | - org.springframework:org.springframework.asm:jar:3.1.1.RELEASE:compile
  16. [INFO] +- org.springframework:org.springframework.context:jar:3.1.1.RELEASE:compile
  17. [INFO] | - org.springframework:org.springframework.expression:jar:3.1.1.RELEASE:compile
  18. [INFO] +- org.springframework:org.springframework.core:jar:3.1.1.RELEASE:compile
  19. [INFO] - org.apache.struts:struts2-spring-plugin:jar:2.2.3.1:compile
  20. [INFO] +- org.springframework:spring-beans:jar:2.5.6:compile
  21. [INFO] +- org.springframework:spring-core:jar:2.5.6:compile
  22. [INFO] +- org.springframework:spring-context:jar:2.5.6:compile
  23. [INFO] - org.springframework:spring-web:jar:2.5.6:compile
  24.  
  25. <dependencies>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>4.4</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.easymock</groupId>
  34. <artifactId>easymockclassextension</artifactId>
  35. <version>3.0</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.guava</groupId>
  40. <artifactId>guava</artifactId>
  41. <version>r07</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.mail</groupId>
  45. <artifactId>mail</artifactId>
  46. <version>1.4.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.dbunit</groupId>
  50. <artifactId>dbunit</artifactId>
  51. <version>2.2</version>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.hibernate</groupId>
  56. <artifactId>hibernate-entitymanager</artifactId>
  57. <version>3.5.6-Final</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>postgresql</groupId>
  61. <artifactId>postgresql</artifactId>
  62. <version>9.1-901.jdbc3</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>org.springframework.orm</artifactId>
  67. <version>3.1.1.RELEASE</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>org.springframework.web</artifactId>
  72. <version>3.1.1.RELEASE</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>org.springframework.beans</artifactId>
  77. <version>3.1.1.RELEASE</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>org.springframework.context</artifactId>
  82. <version>3.1.1.RELEASE</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>org.springframework.core</artifactId>
  87. <version>3.1.1.RELEASE</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>log4j</groupId>
  91. <artifactId>log4j</artifactId>
  92. <version>1.2.14</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-collections</groupId>
  96. <artifactId>commons-collections</artifactId>
  97. <version>3.1</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.struts</groupId>
  101. <artifactId>struts2-spring-plugin</artifactId>
  102. <version>2.2.3.1</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.struts</groupId>
  106. <artifactId>struts2-core</artifactId>
  107. <version>2.2.3.1</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.struts</groupId>
  111. <artifactId>struts2-config-browser-plugin</artifactId>
  112. <version>2.2.3.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.struts</groupId>
  116. <artifactId>struts2-json-plugin</artifactId>
  117. <version>2.2.3.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.jgeppert.struts2.jquery</groupId>
  121. <artifactId>struts2-jquery-plugin</artifactId>
  122. <version>2.4.1</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.jgeppert.struts2.jquery</groupId>
  126. <artifactId>struts2-jquery-grid-plugin</artifactId>
  127. <version>2.4.1</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.jgeppert.struts2.jquery</groupId>
  131. <artifactId>struts2-jquery-richtext-plugin</artifactId>
  132. <version>2.4.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.freemarker</groupId>
  136. <artifactId>freemarker</artifactId>
  137. <version>2.3.16</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.struts</groupId>
  141. <artifactId>struts2-sitemesh-plugin</artifactId>
  142. <version>2.2.1</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.struts</groupId>
  146. <artifactId>struts2-convention-plugin</artifactId>
  147. <version>2.2.1</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>javax.servlet</groupId>
  151. <artifactId>servlet-api</artifactId>
  152. <version>2.4</version>
  153. <scope>provided</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>taglibs</groupId>
  157. <artifactId>standard</artifactId>
  158. <version>1.1.2</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>javax.servlet</groupId>
  162. <artifactId>jstl</artifactId>
  163. <version>1.1.2</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>concurrent</groupId>
  167. <artifactId>concurrent</artifactId>
  168. <version>1.3.4</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.itextpdf</groupId>
  172. <artifactId>itextpdf</artifactId>
  173. <version>5.0.4</version>
  174. </dependency>
  175. </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment