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, targetDir, taskName: 'downloadSources');
await _runGradleCommand(deps, targetDir, taskName: 'extractSourceJars');
}