Goals available for this plugin:
Goal | Description |
---|---|
opoopress:build | Generate static site/blog, same as generate . |
opoopress:clean | Clean site/blog templates cache and temp files. |
opoopress:deploy | Deploy site/blog to remote or local server. |
opoopress:deploy-to-github | No description. |
opoopress:deploy-to-github2 | No description. |
opoopress:generate | Generate static site/blog. |
opoopress:import | No description. |
opoopress:install | No description. |
opoopress:new-page | Create new page file. |
opoopress:new-post | Create new post file. |
opoopress:preview | Start a web server for preview, monitor the site for changes and generate whenever it does. |
opoopress:sass-compile | Compile the SASS files into css. Check compass compile
on http://compass-style.org/help/tutorials/command-line/ for more
details. |
opoopress:sass-watch | Watch the SASS for changes and compile whenever it does. Check
compass watch on
http://compass-style.org/help/tutorials/command-line/ for more
details. |
opoopress:wordpress-import | Import posts and pages from the XML file that exported from WordPress. |
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 should 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.opoo.press.maven.plugins</groupId> <artifactId>opoopress-maven-plugin</artifactId> <version>1.0-SNAPSHOT</version> </plugin> ... </plugins> </pluginManagement> <!-- To use the plugin goals in your POM or parent POM --> <plugins> <plugin> <groupId>org.opoo.press.maven.plugins</groupId> <artifactId>opoopress-maven-plugin</artifactId> <version>1.0-SNAPSHOT</version> </plugin> ... </plugins> </build> ... </project>
For more information, see "Guide to Configuring Plug-ins"