UI-less dependency functionality
Hi there,
Is it possible to access the dependency logic in the open api? Namely, I'd
like to be able to find the dependencies my project classes have on a package
in a library, for instance (or at least if there are any).
TIA,
Andrei
Please sign in to leave a comment.
Hello Andrei,
Not in openapi but...
DependenciesBuilder builder = new ForwardDependenciesBuilder(project, analysisScope);
builder.analyze();
builder.getDependencies() // returns Map>]]>
-
Maxim Shafirov
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
Hello Maxim,
Great. Thanks.
Andrei
MS> Not in openapi but...
MS> DependenciesBuilder builder = new
MS> ForwardDependenciesBuilder(project, analysisScope);
MS> builder.analyze();
MS> builder.getDependencies() // returns Map>]]>