hibernate3-maven-plugin: разрывается с обновленной версией Hibernate (3.6.6-FINAL) в зависимости
Я успешно использовал hibernate3-maven-plugin с Hibernate-Core и EntityManager 3.6.6-FINAL, hibernate-commons-annotations-3.2.0.Final, hibernate-jpa-2.0-api-1.0.1.Final и hibernate-validator-4.0.0.GA в недавнем прошлом. Я генерировал DDL через этот плагин; проект использовал JPA для настойчивости; следовательно, эта цель использовала конфигурацию JPA и работала хорошо.
Теперь, когда я реализую hbm2cfgxml и hbm2java, используя одну и ту же версию hibernate-core; hibernate-аннотация 3.5.6-FINAL (в качестве зависимости, которую я исключил, используется hibernate-core 3.5.6-FINAL) и аннотации hibernate-общих 3.2.0.Final; это дает IncompatibleClassChangeError. Моя конфигурация плагина:
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>hbm2cfgxml</id>
<phase>generate-resources</phase>
<goals>
<goal>hbm2cfgxml</goal>
</goals>
<configuration>
<components>
<component>
<name>hbm2cfgxml</name>
<implementation>jdbcconfiguration</implementation>
</component>
</components>
<componentProperties>
<ejb3>true</ejb3>
<packagename>foo.bar</packagename>
</componentProperties>
</configuration>
</execution>
<execution>
<id>hbm2java</id>
<phase>generate-sources</phase>
<goals>
<goal>hbm2java</goal>
</goals>
<configuration>
<components>
<component>
<name>hbm2java</name>
<implementation>annotationconfiguration</implementation>
</component>
</components>
<componentProperties>
<ejb3>true</ejb3>
<packagename>foo.bar</packagename>
<configurationfile>target/hibernate3/generated-mappings/hibernate.cfg.xml</configurationfile>
</componentProperties>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.16</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.0.0.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.6.6.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.6.6.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>3.6.6.Final</version>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.5.6-Final</version>
<type>jar</type>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</plugin>
</plugins>
И Ошибка:
[ОШИБКА] Не удалось выполнить цель org.codehaus.mojo:hibernate3-maven-plugin:2.2:hbm2cfgxml (hbm2cfgxml) в проекте dss-domain: выполнение hbm2cfgxml цели org.codehaus.mojo: hibernate3-maven-plugin: 2.2: hibernate3-maven-plugin: 2.2: ошибка: при выполнении org.codehaus.mojo: hibernate3-maven-plugin: 2.2: hbm2cfgxml: java.lang.IncompatibleClassChangeError обнаружен интерфейс org.hibernate.cfg.Mappings, но класс ожидался.
Есть идеи, кто виноват? новые гибернационные версии или плагин (которые могут потребовать обновления, так как кажется, что на 2.2 довольно долго.
1 ответ
Я предполагаю, что проблема в Hibernate Tools. Я думаю, что текущая стабильная версия (3.2.4.GA) совместима с Hibernate Core 3.3.X, а текущий мастер git (https://github.com/hibernate/hibernate-tools) работает с Hibernate Core 3.5.X. Вы можете попробовать установить одну из этих веток github Hibernate Tools и объявить зависимость от нее в hibernate3-maven-plugin.
https://github.com/axiomalaska/hibernate-tools/tree/3.6.X - Hibernate 3.6.X (раскрытие: моя вилка)
https://github.com/dgeraskov/hibernate-tools/tree/hibernate4 - Hibernate 4.X