Plugin Documentation

Goals available for this plugin:

GoalDescription
opoopress:buildGenerate static site/blog, same as generate.
opoopress:cleanClean site/blog templates cache and temp files.
opoopress:deployDeploy site/blog to remote or local server.
opoopress:deploy-to-githubNo description.
opoopress:deploy-to-github2No description.
opoopress:generateGenerate static site/blog.
opoopress:importNo description.
opoopress:installNo description.
opoopress:new-pageCreate new page file.
opoopress:new-postCreate new post file.
opoopress:previewStart a web server for preview, monitor the site for changes and generate whenever it does.
opoopress:sass-compileCompile the SASS files into css. Check compass compile on http://compass-style.org/help/tutorials/command-line/ for more details.
opoopress:sass-watchWatch 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-importImport posts and pages from the XML file that exported from WordPress.

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven2.0
JDK1.6
MemoryNo minimum requirement.
Disk SpaceNo minimum requirement.

Usage

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"