का उपयोग कर hbm2ddl उत्पन्न करने में असमर्थ मैंने hibernate3-maven-plugin के एक नए संस्करण में अद्यतन किया है। मुझे नीचे उल्लिखित प्लगइन का उपयोग करने का प्रयास करने में निम्न त्रुटि मिलती है।hibernate3-maven-plugin-3.0
इस मुद्दे को हल करने में किसी भी संकेतक की सराहना करेंगे।
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>3.0</version>
<executions>
<execution>
<id>create sql schema</id>
<phase>process-test-resources</phase>
<goals>
<goal>hbm2ddl</goal>
</goals>
<configuration>
<componentProperties>
<persistenceunit>${app.module}</persistenceunit>
<drop>false</drop>
<create>true</create>
<outputfilename>${app.sql}-create.sql</outputfilename>
<skip>${db.schema.gen.skip}</skip>
</componentProperties>
</configuration>
</execution>
<execution>
<id>drop sql schema</id>
<phase>process-test-resources</phase>
<goals>
<goal>hbm2ddl</goal>
</goals>
<configuration>
<componentProperties>
<persistenceunit>${app.module}</persistenceunit>
<drop>true</drop>
<create>false</create>
<outputfilename>${app.sql}-drop.sql</outputfilename>
<skip>${db.schema.gen.skip}</skip>
</componentProperties>
</configuration>
</execution>
</executions>
</plugin>
[ERROR] Failed to execute goal org.codehaus.mojo:hibernate3-maven-plugin:3.0:hbm2ddl (create sql schema) on project sample: There was an error creating the AntRun task. NullPointerException -> [Help 1]org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:hibernate3-maven-plugin:3.0:hbm2ddl (create sql schema) on project framework: There was an error creating the AntRun task.
यह अभी भी कोई फर्क नहीं पड़ता है, मैं पहले की तरह ही त्रुटि देख रहा हूं। –
प्रासंगिक डीबग संदेश इस मुद्दे को हल करने के लिए और संकेत दे सकता है। बस अपने maven कमांड में "-X" या "-debug" जोड़ें। – Kuhpid
http://pastebin.com/2QLFjp4q - यहां देखें –