2 <!-- Generated by Apache Maven Doxia Site Renderer 1.6 at 2016-03-09 -->
3 <!-- Current: debugging.html -->
4 <!-- Active: index.html -->
5 <!-- Path: [index.html, debugging.html] -->
6 <!-- Skiplist: [index.html, configuration.html, create-mojo.html, drop-mojo.html, debugging.html, skip.html, force.html, pitfalls.html] -->
9 <title>juplo - Hibernate Maven Plugin - Enable Debug-Output</title>
10 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
11 <link rel="canonical" href="http://juplo.de/hibernate-maven-plugin/debugging.html"/>
12 <meta name="viewport" content="width=device-width, initial-scale=1" />
13 <link rel="stylesheet" type="text/css" href="/css/base.css" />
14 <style type="text/css">
15 @import '/css/screen.css' screen;
17 <script src="/js/prettify.js"></script>
19 <script src="/js/html5shiv.js"></script>
22 <link rel="stylesheet" type="text/css" href="/css/ie8.css" />
24 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
26 <body class="menu" onload="prettyPrint()">
27 <div id="page" class="cf">
29 <h1 id="logo"><a href="/" title="Home" class="l">juplo</a></h1>
30 <span id="slogan"><strong>Java</strong> bits from nerds for nerds</span>
34 <strong class="b title">You are here:</strong>
36 <li class="b"><a class="b" href="/">Home</a></li>
37 <li class="b"><a class="b" href="/projects.html">Projects</a></li>
38 <li class="b"><a class="b" href="./index.html">Hibernate Maven Plugin</a></li>
39 <li class="b"><strong class="b">Enable Debug-Output</strong></li>
41 <a class="hide" href="#navigation">Jump to navigation</a>
44 <main class="content cf">
45 <article id="content" class="main">
46 <header><h1>Enable Debug-Output</h1></header>
52 If you are new to <tt>hibernate-maven-plugin</tt>, in many cases, the
53 <a href="./configuration.html#precedence">Configuration-Method-Precedence</a>
54 may be the source of configuration errors.
55 To solve this problem, you should run maven with the debugging output
57 For example, by executing:
61 <pre class="prettyprint linenums lang-html">
62 mvn -X compile hibernate:create</pre></div>
65 (The <tt>compile</tt> might be necessary, because <tt>hibernate-maven-plugin</tt>
66 has to scan the compiled classes for annotations!)
70 Unlike the majority of the maven-plugins, <tt>hibernate-maven-plugin</tt> was
71 designed to give a good many hints, when debugging is enabled.
72 Because, if you do not know, what went wrong, you can't fix it!
76 <b>But be warned:</b> <tt>hibernate-maven-plugin</tt> tends to be very chatty ;)
81 <div class="marginal">
84 <a id="navigation"></a>
85 <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
86 <h2 class="nav menu">Section-Menu</h2>
88 <li class="m blog"><a href="/blog/" class="m">Blog</a></li>
89 <li class="m projects"><a href="/projects.html" class="m selected">Projects</a></li>
90 <li class="m about"><a href="/about.html" class="m">About</a></li>
92 <h2 class="nav submenu">
93 <span class="s">Submenu for section</span>
94 <a class="s selected" href="/projects.html">Projects</a>
96 <ul id="submenu" class="s">
98 <a class="s selected" href="./index.html">Hibernate Maven Plugin</a>
101 <a href="configuration.html" class="s" title="Configuration Examples">Configuration Examples</a>
104 <a href="create-mojo.html" class="s" title="Goal: CREATE">Goal: CREATE</a>
107 <a href="drop-mojo.html" class="s" title="Goal: DROP">Goal: DROP</a>
110 <strong class="s">Enable Debug-Output</strong>
113 <a href="skip.html" class="s" title="Skipping Execution">Skipping Execution</a>
116 <a href="force.html" class="s" title="Force Exceution">Force Exceution</a>
119 <a href="pitfalls.html" class="s" title="Known Pitfalls (FAQ)">Known Pitfalls (FAQ)</a>
122 <a href="project-info.html" class="s" title="Project Information">Project Information</a>
125 <a href="project-reports.html" class="s" title="Project Reports">Project Reports</a>
133 <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
134 <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
141 <ul id="footerlinks">
142 <li class="f" id="copyright">© <strong>mo</strong> 2016
144 <li class="f"><a class="f" href="/impressum.html">Impressum</a></li>
145 <li class="f about"><a class="f" href="/about.html">About</a></li>
149 <script type="text/javascript"><!--//--><![CDATA[//><!--
150 var _gaq = _gaq || [];
151 _gaq.push(['_setAccount', 'UA-571104-3']);
152 _gaq.push(['_trackPageview']);
154 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
155 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
156 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);