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 {
118
118
} else {
119
119
// download library dependencies of project for type resolution
120
120
String dependencies = null ;
121
- if (BuildProject .downloadLibraryDependencies (input , projectRootPom )) {
121
+ try { if (BuildProject .downloadLibraryDependencies (input , projectRootPom )) {
122
122
dependencies = String .valueOf (BuildProject .libDownloadPath );
123
123
} else {
124
124
Log .warn ("Failed to download library dependencies of project" );
125
125
}
126
+ } catch (IllegalStateException illegalStateException ) {
127
+ Log .warn ("Failed to download library dependencies of project" );
128
+ }
129
+
126
130
boolean analysisFileExists = output != null && Files .exists (Paths .get (output + File .separator + outputFileName ));
127
131
128
132
// 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