マッピング プロセスで生成してはならないクラスが 1 つまたは 2 つあります。hbm2java ゴールで生成しない個々のクラスを指定する方法はありますか?
次のようなプラグイン構成があります。
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>3.0</version>
<executions>
<execution>
<id>hbm2java</id>
<phase>generate-sources</phase>
<goals>
<goal>hbm2java</goal>
</goals>
<inherited>false</inherited>
<configuration>
<hibernatetool>
<annotationconfiguration propertyFile="src/main/resources/hibernate.cfg.xml" />
<hbm2java jdk5="true" ejb3="true"/>
</hibernatetool>
</configuration>
</execution>
</executions>