File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/main/java/com/ibm/cldk Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1- version =1.0.9
1+ version =1.0.10
Original file line number Diff line number Diff line change @@ -118,11 +118,15 @@ private static void analyze() throws Exception {
118118 } else {
119119 // download library dependencies of project for type resolution
120120 String dependencies = null ;
121- if (BuildProject .downloadLibraryDependencies (input , projectRootPom )) {
121+ try { if (BuildProject .downloadLibraryDependencies (input , projectRootPom )) {
122122 dependencies = String .valueOf (BuildProject .libDownloadPath );
123123 } else {
124124 Log .warn ("Failed to download library dependencies of project" );
125125 }
126+ } catch (IllegalStateException illegalStateException ) {
127+ Log .warn ("Failed to download library dependencies of project" );
128+ }
129+
126130 boolean analysisFileExists = output != null && Files .exists (Paths .get (output + File .separator + outputFileName ));
127131
128132 // if target files are specified, compute symbol table information for the given files
You can’t perform that action at this time.
0 commit comments