Я успешно использовал 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-домен: выполнение hbm2cfgxml цели
org.codehaus.mojo: hibernate3-maven-plugin: 2.2: hbm2cfgxml не удалось: An
Обнаружена несовместимость API при выполнении
org.codehaus.mojo: hibernate3-Maven-плагин: 2,2: hbm2cfgxml:
java.lang.IncompatibleClassChangeError: найденный интерфейс
org.hibernate.cfg.Mappings, но ожидался класс
Есть идеи, кто виноват? новые версии или плагин гибернации (которые могут потребовать обновления, так как кажется, что на 2.2 довольно долго.