WIP: Dummy-Seiten für Blog... RENAME: prefix/suffix
[website] / dist / hibernate4-maven-plugin-1.0 / plugin-info.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <!-- Generated by Apache Maven Doxia at Nov 29, 2012 -->\r
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\r
4   <head>\r
5     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\r
6     <title>Hibernate 4 Maven Plugin - Plugin Documentation</title>\r
7     <style type="text/css" media="all">\r
8       @import url("./css/maven-base.css");\r
9       @import url("./css/maven-theme.css");\r
10       @import url("./css/site.css");\r
11     </style>\r
12     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />\r
13     <meta name="Date-Revision-yyyymmdd" content="20121129" />\r
14     <meta http-equiv="Content-Language" content="en" />\r
15         \r
16   </head>\r
17   <body class="composite">\r
18     <div id="banner">\r
19                     <div id="bannerLeft">\r
20                 Hibernate 4 Maven Plugin\r
21                 </div>\r
22                     <div class="clear">\r
23         <hr/>\r
24       </div>\r
25     </div>\r
26     <div id="breadcrumbs">\r
27             \r
28         \r
29                 <div class="xleft">\r
30         <span id="publishDate">Last Published: 2012-11-29</span>\r
31                   &nbsp;| <span id="projectVersion">Version: 1.0</span>\r
32                       </div>\r
33             <div class="xright">        \r
34         \r
35       </div>\r
36       <div class="clear">\r
37         <hr/>\r
38       </div>\r
39     </div>\r
40     <div id="leftColumn">\r
41       <div id="navcolumn">\r
42              \r
43         \r
44                                 <h5>Overview</h5>\r
45                   <ul>\r
46                   <li class="none">\r
47                           <a href="index.html" title="Introduction">Introduction</a>\r
48             </li>\r
49                   <li class="none">\r
50                           <a href="examples.html" title="Examples">Examples</a>\r
51             </li>\r
52                   <li class="none">\r
53             <strong>Documentation</strong>\r
54           </li>\r
55           </ul>\r
56                        <h5>Project Documentation</h5>\r
57                   <ul>\r
58                                                                                                                                                                                                                                                         <li class="collapsed">\r
59                           <a href="project-info.html" title="Project Information">Project Information</a>\r
60                   </li>\r
61                                                                                                                                                       <li class="expanded">\r
62                           <a href="project-reports.html" title="Project Reports">Project Reports</a>\r
63                     <ul>\r
64                       <li class="none">\r
65                           <a href="cpd.html" title="CPD Report">CPD Report</a>\r
66             </li>\r
67                       <li class="none">\r
68                           <a href="apidocs/index.html" title="JavaDocs">JavaDocs</a>\r
69             </li>\r
70                       <li class="none">\r
71             <strong>Plugin Documentation</strong>\r
72           </li>\r
73                       <li class="none">\r
74                           <a href="pmd.html" title="PMD Report">PMD Report</a>\r
75             </li>\r
76                       <li class="none">\r
77                           <a href="xref/index.html" title="Source Xref">Source Xref</a>\r
78             </li>\r
79               </ul>\r
80         </li>\r
81           </ul>\r
82                              <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">\r
83         <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />\r
84       </a>\r
85                    \r
86         \r
87             </div>\r
88     </div>\r
89     <div id="bodyColumn">\r
90       <div id="contentBox">\r
91         <div class="section"><h2>Plugin Documentation<a name="Plugin_Documentation"></a></h2><a name="Plugin_Documentation"></a><p>Goals available for this plugin:</p><table align="center" border="0" class="bodyTable"><tr class="a"><th align="left">Goal</th><th align="left">Description</th></tr><tr class="b"><td align="left"><a href="export-mojo.html">hibernate4:export</a></td><td align="left">Goal which extracts the hibernate-mapping-configuration and exports
92 an according SQL-database-schema.</td></tr></table><div class="section"><h3>System Requirements<a name="System_Requirements"></a></h3><a name="System_Requirements"></a><p>The following specifies the minimum requirements to run this Maven plugin:</p><table align="center" border="0" class="bodyTable"><tr class="a"><td align="left">Maven</td><td align="left">2.0.6</td></tr><tr class="b"><td align="left">JDK</td><td align="left">1.6</td></tr><tr class="a"><td align="left">Memory</td><td align="left">No minimum requirement.</td></tr><tr class="b"><td align="left">Disk Space</td><td align="left">No minimum requirement.</td></tr></table></div><div class="section"><h3>Usage<a name="Usage"></a></h3><a name="Usage"></a><p>You should specify the version in your project's plugin configuration:</p><div class="source"><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&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&lt;/version&gt;
112       &lt;/plugin&gt;
113       ...
114     &lt;/plugins&gt;
115   &lt;/build&gt;
116   ...
117 &lt;/project&gt;
118 </pre></div><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>\r
119       </div>\r
120     </div>\r
121     <div class="clear">\r
122       <hr/>\r
123     </div>\r
124     <div id="footer">\r
125       <div class="xright">Copyright &#169;                   2012.\r
126           All Rights Reserved.      \r
127         \r
128       </div>\r
129       <div class="clear">\r
130         <hr/>\r
131       </div>\r
132     </div>\r
133   </body>\r
134 </html>\r