Hearsay is %100 Java and is built using the Apache Maven build system.
Prerequisites include:
You will need a ~/.m2/settings.xml with the correct artifact repository enabled. Here is an example:
<settings>
<profiles>
<profile>
<id>dev</id>
<repositories>
<repository>
<id>renci.repository</id>
<name>renci.repository</name>
<url>http://archiva.renci.org:8080/repository/internal</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>dev</activeProfile>
</activeProfiles>
</settings>