downloadMavenSources static method
Downloads and unpacks source files of deps into targetDir.
Implementation
static Future<void> downloadMavenSources(
List<MavenDependency> deps, String targetDir) async {
await _runGradleCommand(deps, taskName: 'downloadSources', targetDir);
await _runGradleCommand(deps, taskName: 'extractSourceJars', targetDir);
}