Quantcast
Channel: Gradle Forums - Latest posts
Viewing all articles
Browse latest Browse all 20295

How do you programmatically access resolved implementation dependencies?

$
0
0

You can access the resolution result using configurations.runtimeClasspath.incoming.resolutionResult.

The implementation configuration is just a set of dependencies. So you don’t “access the resolved implementation dependencies”. You have to ask Gradle what was resolved for compile (compileClasspath) or runtime (runtimeClasspath) or annotation processing (annotationProcessor), …


Viewing all articles
Browse latest Browse all 20295

Trending Articles