downloadMavenJars static method
Downloads JAR files of all deps transitively into targetDir.
Implementation
static Future<void> downloadMavenJars(
List<MavenDependency> deps, String targetDir) async {
await _runGradleCommand(deps, taskName: 'copyJars', targetDir);
await _runGradleCommand(deps, taskName: 'extractSourceJars', targetDir);
}