downloadMavenJars static method
Downloads JAR files of all deps
transitively into targetDir
.
Implementation
static Future<void> downloadMavenJars(
List<MavenDependency> deps, String targetDir) async {
final tempDir = await currentDir.createTemp('maven_temp_');
await _runGradleCommand(deps, targetDir);
await tempDir.delete(recursive: true);
}