File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 147
147
<dependency >
148
148
<groupId >com.amazonaws</groupId >
149
149
<artifactId >aws-java-sdk-core</artifactId >
150
- <version >1.12.3 </version >
150
+ <version >${aws-java-sdk.version} </version >
151
151
</dependency >
152
152
<dependency >
153
153
<groupId >com.amazonaws</groupId >
154
154
<artifactId >aws-java-sdk-sts</artifactId >
155
- <version >1.12.131 </version >
155
+ <version >${aws-java-sdk.version} </version >
156
156
</dependency >
157
157
<dependency >
158
158
<groupId >com.amazonaws</groupId >
355
355
<version >2.10.10</version >
356
356
</dependency >
357
357
</dependencies >
358
- </project >
358
+ </project >
Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ def parse_packages_from_pom(self):
81
81
maven_version = '{http://maven.apache.org/POM/4.0.0}'
82
82
# dictionary of common package versions encoded in `properties` section
83
83
properties = {f"${{{ child .tag .replace (maven_version , '' )} }}" : child .text
84
- for child in maven_root .find (f'{ maven_version } properties' ).iter () if 'version' in child .tag }
85
-
84
+ for child in maven_root .find (f'{ maven_version } properties' ).iter () if 'version' in child .tag }
85
+
86
86
packages = []
87
87
for dep in maven_root .iter (f'{ maven_version } dependency' ):
88
88
dependency = []
@@ -93,11 +93,10 @@ def parse_packages_from_pom(self):
93
93
else :
94
94
dependency .append (val )
95
95
packages .append (tuple (dependency ))
96
-
96
+
97
97
return packages
98
98
99
99
def download_and_check (self ):
100
- packages = self .parse_packages_from_pom ()
101
100
self .download_files ()
102
101
self .on_completion ()
103
102
missing_jars = self .missing_jars ()
You can’t perform that action at this time.
0 commit comments