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