Repository: cayenne Updated Branches: refs/heads/master 67c947e0b -> 42be874b7
Added a table of parameters for maven-cayenne-modeler-plugin Project: http://git-wip-us.apache.org/repos/asf/cayenne/repo Commit: http://git-wip-us.apache.org/repos/asf/cayenne/commit/4fe20ec5 Tree: http://git-wip-us.apache.org/repos/asf/cayenne/tree/4fe20ec5 Diff: http://git-wip-us.apache.org/repos/asf/cayenne/diff/4fe20ec5 Branch: refs/heads/master Commit: 4fe20ec554a4997d9fc9f85e41bc387e3dc532f5 Parents: 8f3ac8b Author: Anton Dreka <[email protected]> Authored: Tue Apr 18 14:37:12 2017 +0300 Committer: Anton Dreka <[email protected]> Committed: Tue Apr 18 14:37:12 2017 +0300 ---------------------------------------------------------------------- docs/docbook/cayenne-guide/src/docbkx/setup.xml | 31 ++++++++++++++++++++ 1 file changed, 31 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cayenne/blob/4fe20ec5/docs/docbook/cayenne-guide/src/docbkx/setup.xml ---------------------------------------------------------------------- diff --git a/docs/docbook/cayenne-guide/src/docbkx/setup.xml b/docs/docbook/cayenne-guide/src/docbkx/setup.xml index 2310ba3..090a400 100644 --- a/docs/docbook/cayenne-guide/src/docbkx/setup.xml +++ b/docs/docbook/cayenne-guide/src/docbkx/setup.xml @@ -136,5 +136,36 @@ <para>And then can be run as <screen><prompt>$</prompt> mvn cayenne-modeler:run</screen> </para> + <para> + <table frame="void"> + <caption>modeler plugin parameters</caption> + <col width="14%"/> + <col width="7%"/> + <col width="79%"/> + <thead> + <tr> + <th>Name</th> + <th>Type</th> + <th>Description</th> + </tr> + </thead> + <tbody> + <tr> + <td><code>modelFile</code> + </td> + <td>File</td> + <td>Name of the model file to open. Here is some simple example: + <programlisting language="xml"><plugin> + <groupId>org.apache.cayenne.plugins</groupId> + <artifactId>maven-cayenne-modeler-plugin</artifactId> + <version>${cayenne.version}</version> + <configuration> + <modelFile>src/main/resources/cayenne.xml</modelFile> + </configuration> +</plugin></programlisting> + </td> + </tr> + </tbody> + </table></para> </section> </chapter>
