To use Beta-1

Add the propellors repository to your settings, and use as normal. Quickstart instructions are on the main page. No need to download the source code if you use this method. Unless you want to. And that would be great!

<settings>
  <profiles>
    ...
    <profile>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <id>propellors</id>
      <repositories>
        <repository>
          <id>prop-repo</id>
          <url>http://propellors.net/maven-repo</url>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <releases>
            <enabled>false</enabled>
          </releases>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>prop-plugs</id>
          <url>http://propellors.net/maven-repo</url>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <releases>
            <enabled>false</enabled>
          </releases>
        </pluginRepository>
      </pluginRepositories>
    </profile>
    ...
  </profiles>
<settings>

Installing Ruby Mojo Support Manually

The code lives in the codehaus mojo sandbox. (https://svn.codehaus.org/mojo/trunk/mojo/mojo-sandbox/rubyscript-maven-plugin/) If you would like to use the ruby mojo support, download and install (mvn install) the rubyscript-maven-plugin project. Then include the following to your ruby plug-in mojo pom:

  <parent>
    <groupId>org.codehaus.mojo.plugins</groupId>
    <artifactId>rubyscript-parent-maven-plugin</artifactId>
    <version>1</version>
  </parent>

Use the plugin like any Java plugin, defining configuration properties in the same way with one notable exception: All properties are currently Strings. This is something that will be fixed in the future, but for the time being, all plugins used written in Ruby must contain only parameters of strings. This is not to say that you cannot pass in a string, and convert it to a File, or an Array, or anything else.

Download the Source

You can download the source here https://svn.codehaus.org/mojo/trunk/mojo/mojo-sandbox/.