生成SQL方案并将其复制到包含到WAR-file:插件依赖项的问题

时间:2011-05-11 17:57:53

标签: maven maven-resources-plugin hibernate3-maven-plugin

在运行集成测试之前,我需要设置数据库。这包括生成SQL方案(基于JPA注释),将其保存到文件并将其与其他资源一起复制到目录,该目录稍后将用于创建war文件(将部署到Jetty)。

因此,我使用以下hibernate3-maven-plugin配置生成SQL-scheme:http://pastebin.ubuntu.com/606229/

要将结果hsql-scheme.sqlsrc/env/test/WEB-INF/classes复制到target/,将其打包到WAR文件中,我使用以下内容: http://pastebin.ubuntu.com/606230/

但是当我运行mvn verify -P test时(是的,所有这些代码都在单独的配置文件中)我得到了:http://pastebin.ubuntu.com/606231/

正如您所看到的,hibernate3:hbm2ddl不生成任何SQL方案,结果文件为空(在其他情况下,我们也会在控制台上看到它)。这是一个问题。

问题的根源(据我所知)是因为hibernate3:hbm2ddl invokes the execution of the lifecycle phase process-resources prior to executing itself

提前致谢!

1 个答案:

答案 0 :(得分:0)

This question帮助我修复了架构的创建:

  • hibernate3:hbm2ddl阶段致电prepare-package而不是generate-resources

  • hibernate3:hbm2ddl的结果直接投放到target/${build.finalName}/WEB-INF/classes

所以,现在我仍然有hibernate3:hbm2ddl invokes the execution of the lifecycle phase process-resources prior to executing itself警告,但文件target/${build.finalName}/WEB-INF/classes/hsql-scheme.sql不像以前一样空。