@@ -90,10 +90,15 @@ limitations under the License.
9090 <groupId >org.hamcrest</groupId >
9191 <artifactId >hamcrest</artifactId >
9292 </exclusion >
93- <exclusion >
94- <groupId >org.hamcrest</groupId >
95- <artifactId >hamcrest</artifactId >
96- </exclusion >
93+ <exclusion >
94+ <groupId >org.hamcrest</groupId >
95+ <artifactId >hamcrest</artifactId >
96+ </exclusion >
97+ <exclusion >
98+ <!-- transitively brought in by bigquery dependency, use the bigtable version of autovalue instead-->
99+ <groupId >com.google.auto.value</groupId >
100+ <artifactId >auto-value</artifactId >
101+ </exclusion >
97102 </exclusions >
98103 </dependency >
99104 <dependency >
@@ -204,7 +209,7 @@ limitations under the License.
204209 <dependency >
205210 <groupId >com.google.apis</groupId >
206211 <artifactId >google-api-services-storage</artifactId >
207- <version >v1-rev20210127-1.31 .0</version >
212+ <version >v1-rev20220705-2.0 .0</version >
208213 </dependency >
209214 <dependency >
210215 <groupId >com.google.code.findbugs</groupId >
@@ -235,12 +240,6 @@ limitations under the License.
235240
236241
237242 <!-- CVE Group: force update transitive deps to exclude CVEs -->
238- <dependency >
239- <groupId >commons-codec</groupId >
240- <artifactId >commons-codec</artifactId >
241- <version >1.15</version >
242- <scope >runtime</scope >
243- </dependency >
244243 <dependency >
245244 <groupId >org.apache.commons</groupId >
246245 <artifactId >commons-compress</artifactId >
@@ -466,6 +465,23 @@ limitations under the License.
466465 </execution >
467466 </executions >
468467 </plugin >
468+ <plugin >
469+ <groupId >org.apache.maven.plugins</groupId >
470+ <artifactId >maven-dependency-plugin</artifactId >
471+ <configuration >
472+ <ignoredUnusedDeclaredDependencies >
473+ <ignoredUnusedDeclaredDependency >com.google.cloud.bigdataoss:gcs-connector:*:*</ignoredUnusedDeclaredDependency >
474+ <!-- seems to be a bug in the dependency analyzer, removing this dep reports the reverse problem
475+ See: https://issues.apache.org/jira/browse/MDEP-679 -->
476+ <ignoredUnusedDeclaredDependency > commons-logging:commons-logging:*:*</ignoredUnusedDeclaredDependency >
477+ </ignoredUnusedDeclaredDependencies >
478+ <ignoredUsedUndeclaredDependencies >
479+ <!-- seems to be a bug in the dependency analyzer, adding this dep reports the reverse problem
480+ See: https://issues.apache.org/jira/browse/MDEP-679 -->
481+ <ignoredUsedUndeclaredDependency >org.springframework:spring-jcl:*:*</ignoredUsedUndeclaredDependency >
482+ </ignoredUsedUndeclaredDependencies >
483+ </configuration >
484+ </plugin >
469485 </plugins >
470486 </build >
471487
0 commit comments