Usage

Installation

To start work with PMT you should download .jar file. You can do it for differend ways.

Download manualy

The easiest way is to download .jar from repozitory. In repository are storage PMT sources in source file and javadoc in javadoc file.

Compile

To compile PMT you will need Apache Maven 2.0.8. First step is checkout latest stable code from SVN or checkout unstable versions. Additional information you can find here.

Checkout as Maven dependency

You can download PMT as Maven 2 dependency. Just add repository address in your pom.xml:

<repositories>
        <repository>
                <id>pmt</id>
                <url>http://private-member-testing.googlecode.com/svn/maven2/</url>
                <releases>
                        <enabled>true</enabled>
                </releases>
                <snapshots>
                        <enabled>false</enabled>
                </snapshots>
        </repository>
</repositories>

And dependency in dependencies section:

<dependencies>
        <dependency>
                <groupId>pl.koziolekweb.pmt</groupId>
                <artifactId>PMT</artifactId>
                <version>0.2</version>
                <scope>test</scope>
        </dependency>
</dependencies>