Installation is a matter of choosing which POM artifact to use as the parent, and getting it installed in your local repository.
The standard (and best) way to get Maven artifacts is by automatic download from a public repository such as iBiblio. However, this project is not yet released into public Maven repositories. That means the standard way to get artifacts won't work by default, at least not yet.
The latest artifacts can be obtained from the project snapshots repository on SourceForge.net. To use this repository, add the following repository definition to the repositories section of your project.xml file.
<repositories> <repository> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>sweatsuite-snapshots</id> <name>sweatSuite Snapshots</name> <url>http://sweatsuite.sourceforge.net/m2repos/</url> </repository> </repositories>
SweatSuite is an open source project and can be installed from source by accessing the public Subversion repository directly and installing the artifacts using Maven 2.
svn co https://sweatsuite.svn.sourceforge.net/svnroot/sweatsuite/sweatsuite/trunk sweatsuite cd sweatsuite mvn install
svn co https://sweatsuite.svn.sourceforge.net/svnroot/sweatsuite/sourceforge/trunk sourceforge cd sourceforge mvn install
sweatSuite has not yet been released as a 1.0 product, so there is not yet a source for package downloads.