Installation Manual - gsi-upm/BeastTool GitHub Wiki
To use BEAST Tool, we recommend you to use Maven to automate compilation and project building, as well as dependencies management.
By adding the following dependency to your project pom.xml, BEAST-Tool will be available in your project:
<dependency>
<groupId>es.upm.dit.gsi</groupId>
<artifactId>beast-tool</artifactId>
<version>0.9.8</version>
</dependency>
And to get all dependencies required by Beast Tool:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>es.upm.dit.gsi</groupId>
<artifactId>beast-tool</artifactId>
<version>0.9.8</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
If you prefer to use this tool in a non-maven project, you can download the complete project from github:
https://github.com/gsi-upm/BeastTool
Note: If you don't use Maven, you have to ensure that all dependencies are satisfied when you want to use BeastTool.
Other interesting page is the project site generated with maven hosted in Github too. Metrics, test results and more information can be found in this site. In this site, all dependencies are listed in Dependencies section.