Goals available for this plugin:
| Goal | Description |
|---|---|
| clickframes:help | Display help information on clickframes-maven-plugin. Call mvn clickframes:help -Ddetail=true -Dgoal=<goal-name>to display parameter details. |
| clickframes:execute-tests | A utility to runs selenium tests from command line |
| clickframes:generate | No description. |
| clickframes:gen | Generate source code and other resources from the appspec, by running the plugins listed in the techspec 1) This plugin reads src/main/clickframes/appspec.xml and creates an application model 2) It reads the plugins from the file src/main/clickframes/techspec.xml It runs the plugins listed in the order in which they are specified in the techspec.xml against the application specification specified in the appspec.xml file and generates source code and other resources. Bootstraping: 1) If an appspec is not present, an empty appspec is created 2) If a techspec is not present, a techspec is created with the list of plugins specified by the command line parameter "plugins". If no parameter is specified, the default value "clips" is used. |
| clickframes:generate-tests | Goal which generates a seam project controller file per page |
| clickframes:list | No description. |
| clickframes:prepare-tests | Goal which generates a seam project controller file per page |
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.0 |
| JDK | 1.6 |
| Memory | No minimum requirement. |
| Disk Space | No minimum requirement. |
You could run 'mvn -up' to get the latest version of this plugin, or specify the version in your project's plugin configuration:
<project>
...
<build>
<!-- To define the plugin version in your parent POM -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.clickframes<groupId>
<artifactId>clickframes-maven-plugin<artifactId>
<version>0.9.8<version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.clickframes<groupId>
<artifactId>clickframes-maven-plugin<artifactId>
<version>0.9.8<version>
</plugin>
...
</plugins>
</build>
...
</project>