You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -227,8 +253,9 @@ public static boolean downloadLibraryDependencies(String projectPath, String pro
227
253
FilepomFile = newFile(projectRoot, "pom.xml");
228
254
if (pomFile.exists()) {
229
255
Log.info("Found pom.xml in the project directory. Using Maven to download dependencies.");
230
-
if (!commandExists(MAVEN_CMD))
231
-
thrownewIllegalStateException("Could not find a valid maven command. Could not find " + MAVEN_CMD + " in the project directory or in the system PATH.");
Log.info("Found build.gradle or build.gradle.kts in the project directory. Using gradle to download dependencies.");
242
-
if (!commandExists(GRADLE_CMD))
243
-
thrownewIllegalStateException("Could not find a valid Gradle command. Could not find " + GRADLE_CMD + " in the project directory or in the system PATH.");
0 commit comments