GP-3154: Updating Guava to 31.1-jre, and other dependent jars

This commit is contained in:
Ryan Kurtz 2023-03-09 11:24:35 -05:00
parent f56e922d43
commit f43f411047
9 changed files with 61 additions and 132 deletions

View file

@ -238,6 +238,10 @@ public class GhidraLauncher {
String path = line.trim();
if (!path.startsWith("Module:") && path.endsWith(".jar")) {
ResourceFile jarFile = new ResourceFile(path);
if (path.startsWith("#") || path.startsWith("//")) {
System.err.println("Skipping jar file: " + jarFile);
continue;
}
if (!jarFile.isFile()) {
System.err.println("Failed to find required jar file: " + jarFile);
continue;