lsds / SEEP

Cluster computing using Stateful Dataflow Graphs
26 stars 12 forks source link

Build Failure, missing dependency soot #32

Closed heutelbeck closed 9 years ago

heutelbeck commented 9 years ago

Hello, SEEP Team.

I tried to build you project. I am running into the problem, that the following dependency was not available via the default public Maven repositories. Is there a repository declaration missing, or is it necessary to manually install the dependency into the local repository?

    <dependency>
        <groupId>soot</groupId>
        <artifactId>soot-framework</artifactId>
        <version>2.5.0</version>
    </dependency>

Thank you very much.

pgaref commented 9 years ago

Hello there,

Thanks for the comment. It seems the specific SOOT version is not supported by maven anymore. You have to manually install it by running the maven-install command below inside the SEEP directory:

Then compile the project as described in the home page.

Cheers, Panagiotis

heutelbeck commented 9 years ago

Thank you. The build worked now as documented.