Installation and Setup
Maven Dependency
Boomerang, IDEal and the scopes are released on Maven Central.
Depending on whether you want to use Boomerang or IDEal, include the following dependencies in your project (replace x.y.z
with the latest version):
- Boomerang can be included with the following dependency:
| <dependency>
<groupId>de.fraunhofer.iem</groupId>
<artifactId>boomerangPDS</artifactId>
<version>x.y.z</version>
</dependency>
|
- IDEal can be included with the following dependency:
| <dependency>
<groupId>de.fraunhofer.iem</groupId>
<artifactId>idealPDS</artifactId>
<version>x.y.z</version>
</dependency>
|
Additionally, Boomerang and IDEal require a concrete scope implementation to run with a static analysis framework.
Depending on the desired framework, include the following dependencies (see the FrameworkScopes for more information):
Building the Project locally
Boomerang uses Maven as build tool.
You can compile and install this project on your machine via the command
| mvn clean install -DskipTests
|