Skip to content

Commit

Permalink
deps: upgrade beam to 2.57.0 (#4432)
Browse files Browse the repository at this point in the history
Change-Id: I6f1654fb224165a324fa1dcc97607754bc75cbbe
  • Loading branch information
igorbernstein2 authored Jul 29, 2024
1 parent e59d453 commit f20b907
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions bigtable-dataflow-parent/bigtable-hbase-beam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,33 @@ limitations under the License.
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<!-- All hbase deps are provided and we have no hope of enforcing rules on them -->
<banDuplicateClasses>
<ignoreClasses>
<!-- hbase-shaded-client has an incorrect shading config that doesnt relocate
classes for multiversioned jars. This most likely renders them unusable. Furthermore
bigtable-hbase doesnt use the jackson functionality in hbase. So its safe to ignore
the conflict with beam -->
<ignoreClass>META-INF/versions/*/com/fasterxml/jackson/core/io/doubleparser/*</ignoreClass>
</ignoreClasses>
</banDuplicateClasses>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ limitations under the License.
<truth.version>1.1.5</truth.version>
<hamcrest.version>1.3</hamcrest.version>
<mockito.version>4.11.0</mockito.version>
<beam.version>2.55.1</beam.version>
<beam.version>2.57.0</beam.version>
<!-- referred from bigtable-beam-import and bigtable-emulator -->
<guava.version>31.1-jre</guava.version>
<opencensus.version>0.31.1</opencensus.version>
Expand Down

0 comments on commit f20b907

Please sign in to comment.