Projekt-Dokumentation (Aktueller Stand von juplo.de) hinzugefĆ¼gt
[website] / dist / hibernate-maven-plugin-2.0.0 / plugin-info.html
1 <!DOCTYPE html>
2 <!-- Generated by Apache Maven Doxia Site Renderer 1.6 at 2016-03-09 -->
3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <!-- Current: plugin-info.html -->
4 <!-- Active: project-reports.html -->
5 <!-- Path: [index.html, project-reports.html, plugin-info.html] -->
6 <!-- Skiplist: [index.html, configuration.html, create-mojo.html, drop-mojo.html, debugging.html, skip.html, force.html, pitfalls.html] -->
7 <html>
8   <head>
9     <title>juplo - Hibernate Maven Plugin - Plugin Documentation</title>
10     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
11     <link rel="canonical" href="http://juplo.de/hibernate-maven-plugin/plugin-info.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;
16     </style>
17     <script src="/js/prettify.js"></script>
18     <!--[if lt IE 9]>
19       <script src="/js/html5shiv.js"></script>
20     <![endif]-->
21     <!--[if IE 8]>
22       <link rel="stylesheet" type="text/css" href="/css/ie8.css" />
23     <![endif]-->
24         
25   </head>
26   <body class="menu" onload="prettyPrint()">
27     <div id="page" class="cf">
28       <header id="header">
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>
31         <hr class="h" />
32       </header>
33       <div id="breadcrumb">
34         <strong class="b title">You are here:</strong>
35         <ol class="b">
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">      <a href="project-reports.html" class="b" title="Project Reports">Project Reports</a>
40 </li>
41                         <li class="b"><strong class="b">Plugin Documentation</strong></li>
42                   </ol>
43         <a class="hide" href="#navigation">Jump to navigation</a>
44         <hr class="b" />
45       </div>
46       <main class="content cf">
47         <article id="content" class="main">
48           <header><h1>Plugin Documentation</h1></header>
49           <div class="section">
50 <h2><a name="Plugin_Documentation"></a>Plugin Documentation</h2><a name="Plugin_Documentation"></a>
51 <p>Goals available for this plugin:</p>
52 <table border="0" class="bodyTable">
53 <tr class="a">
54 <th>Goal</th>
55 <th>Description</th></tr>
56 <tr class="b">
57 <td><a href="create-mojo.html">hibernate:create</a></td>
58 <td>Goal which extracts the hibernate-mapping-configuration and exports
59 an according SQL-database-schema.</td></tr>
60 <tr class="a">
61 <td><a href="drop-mojo.html">hibernate:drop</a></td>
62 <td>Goal which extracts the hibernate-mapping-configuration and exports
63 an according SQL-database-schema.</td></tr>
64 <tr class="b">
65 <td><a href="help-mojo.html">hibernate:help</a></td>
66 <td>Display help information on hibernate-maven-plugin.<br />
67 Call <code>mvn hibernate:help -Ddetail=true
68 -Dgoal=&lt;goal-name&gt;</code> to display parameter details.</td></tr></table>
69 <div class="section">
70 <h3><a name="System_Requirements"></a>System Requirements</h3><a name="System_Requirements"></a>
71 <p>The following specifies the minimum requirements to run this Maven plugin:</p>
72 <table border="0" class="bodyTable">
73 <tr class="a">
74 <td>Maven</td>
75 <td>2.0.6</td></tr>
76 <tr class="b">
77 <td>JDK</td>
78 <td>1.6</td></tr>
79 <tr class="a">
80 <td>Memory</td>
81 <td>No minimum requirement.</td></tr>
82 <tr class="b">
83 <td>Disk Space</td>
84 <td>No minimum requirement.</td></tr></table></div>
85 <div class="section">
86 <h3><a name="Usage"></a>Usage</h3><a name="Usage"></a>
87 <p>You should specify the version in your project's plugin configuration:</p>
88 <div class="source">
89 <pre>&lt;project&gt;
90   ...
91   &lt;build&gt;
92     &lt;!-- To define the plugin version in your parent POM --&gt;
93     &lt;pluginManagement&gt;
94       &lt;plugins&gt;
95         &lt;plugin&gt;
96           &lt;groupId&gt;de.juplo&lt;/groupId&gt;
97           &lt;artifactId&gt;hibernate-maven-plugin&lt;/artifactId&gt;
98           &lt;version&gt;2.0.0&lt;/version&gt;
99         &lt;/plugin&gt;
100         ...
101       &lt;/plugins&gt;
102     &lt;/pluginManagement&gt;
103     &lt;!-- To use the plugin goals in your POM or parent POM --&gt;
104     &lt;plugins&gt;
105       &lt;plugin&gt;
106         &lt;groupId&gt;de.juplo&lt;/groupId&gt;
107         &lt;artifactId&gt;hibernate-maven-plugin&lt;/artifactId&gt;
108         &lt;version&gt;2.0.0&lt;/version&gt;
109       &lt;/plugin&gt;
110       ...
111     &lt;/plugins&gt;
112   &lt;/build&gt;
113   ...
114 &lt;/project&gt;
115 </pre></div>
116 <p>For more information, see <a class="externalLink" href="http://maven.apache.org/guides/mini/guide-configuring-plugins.html">&quot;Guide to Configuring Plug-ins&quot;</a></p></div></div>
117         </article>
118         <div class="marginal">
119           <nav id="nav">
120             <hr class="n" />
121             <a id="navigation"></a>
122             <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
123             <h2 class="nav menu">Section-Menu</h2>
124             <ul id="menu">
125               <li class="m blog"><a href="/blog/" class="m">Blog</a></li>
126               <li class="m projects"><a href="/projects.html" class="m selected">Projects</a></li>
127               <li class="m about"><a href="/about.html" class="m">About</a></li>
128             </ul>
129             <h2 class="nav submenu">
130               <span class="s">Submenu for section</span>
131               <a class="s selected" href="/projects.html">Projects</a>
132             </h2>
133             <ul id="submenu" class="s">
134                                                               <li class="s sub">
135                                           <a class="s selected" href="./index.html">Hibernate Maven Plugin</a>
136                                         <ul class="s">
137                                                                                                                                                                                                                                                                         <li class="s off">
138                     <a href="configuration.html" class="s" title="Configuration Examples">Configuration Examples</a>
139                 </li>
140                                                                                                                                 <li class="s off">
141                     <a href="create-mojo.html" class="s" title="Goal: CREATE">Goal: CREATE</a>
142                 </li>
143                                                                                                                                 <li class="s off">
144                     <a href="drop-mojo.html" class="s" title="Goal: DROP">Goal: DROP</a>
145                 </li>
146                                                                                                                                 <li class="s off">
147                     <a href="debugging.html" class="s" title="Enable Debug-Output">Enable Debug-Output</a>
148                 </li>
149                                                                                                                                 <li class="s off">
150                     <a href="skip.html" class="s" title="Skipping Execution">Skipping Execution</a>
151                 </li>
152                                                                                                                                 <li class="s off">
153                     <a href="force.html" class="s" title="Force Exceution">Force Exceution</a>
154                 </li>
155                                                                                                                                 <li class="s off">
156                     <a href="pitfalls.html" class="s" title="Known Pitfalls (FAQ)">Known Pitfalls (FAQ)</a>
157                 </li>
158                                                                                                                                                                                                                                                                                                                                                                           <li class="s sub off">
159                     <a href="project-info.html" class="s" title="Project Information">Project Information</a>
160                 </li>
161                                                                                                                                                                                                                             <li class="s sub">
162                     <a href="project-reports.html" class="s selected" title="Project Reports">Project Reports</a>
163                     <ul class="s active">
164                                                                                                                                                                                       <li class="s">
165                     <a href="testapidocs/index.html" class="s" title="Test JavaDocs">Test JavaDocs</a>
166                 </li>
167                                                                                                                                                                                         <li class="s">
168                     <a href="apidocs/index.html" class="s" title="JavaDocs">JavaDocs</a>
169                 </li>
170                                                                                                                                                                                         <li class="s">
171                     <a href="xref/index.html" class="s" title="Source Xref">Source Xref</a>
172                 </li>
173                                                                                                                                                                                         <li class="s">
174                     <a href="xref-test/index.html" class="s" title="Test Source Xref">Test Source Xref</a>
175                 </li>
176                                                                                                                                                                                         <li class="s">
177                     <a href="cpd.html" class="s" title="CPD">CPD</a>
178                 </li>
179                                                                                                                                                                                         <li class="s">
180                     <a href="pmd.html" class="s" title="PMD">PMD</a>
181                 </li>
182                                                                                                                                                                                               <li class="s">
183               <strong class="s">Plugin Documentation</strong>
184                 </li>
185                     </ul>
186           </li>
187                                                                                               </ul>
188                   </li>
189                                           </ul>
190             <hr class="n" />
191           </nav>
192           <aside class="m">
193             <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
194               <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
195             </a>
196           </aside>
197         </div>
198       </main>
199       <footer id="footer">
200         <hr class="f" />
201         <ul id="footerlinks">
202           <li class="f" id="copyright">&#xa9; <strong>mo</strong>             2016
203       </li>
204           <li class="f"><a class="f" href="/impressum.html">Impressum</a></li>
205           <li class="f about"><a class="f" href="/about.html">About</a></li>
206         </ul>
207       </footer>
208     </div>
209         <script type="text/javascript"><!--//--><![CDATA[//><!--
210       var _gaq = _gaq || [];
211       _gaq.push(['_setAccount', 'UA-571104-3']);
212       _gaq.push(['_trackPageview']);
213       (function() {
214         var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
215         ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
216         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
217       })();
218     //--><!]]>
219     </script>
220       </body>
221 </html>