Skip to content

Commit

Permalink
HBASE-28793 Update hbase-thirdparty to 4.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pankaj72981 committed Aug 18, 2024
1 parent 41dd87c commit ea8b217
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hbase-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<!--Version of protobuf that hbase uses internally (we shade our pb)
Must match what is out in hbase-thirdparty include.
-->
<internal.protobuf.version>4.26.1</internal.protobuf.version>
<internal.protobuf.version>4.27.3</internal.protobuf.version>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected void addOptions() {

@Override
protected void processOptions(CommandLine cmd) {
String testFilterString = cmd.getOptionValue(SHORT_REGEX_ARG, null);
String testFilterString = cmd.getOptionValue(SHORT_REGEX_ARG, (String) null);
if (testFilterString != null) {
intTestFilter.setPattern(testFilterString);
}
Expand Down
2 changes: 1 addition & 1 deletion hbase-protocol-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<!--Version of protobuf that hbase uses internally (we shade our pb)
Must match what is out in hbase-thirdparty include.
-->
<internal.protobuf.version>4.26.1</internal.protobuf.version>
<internal.protobuf.version>4.27.3</internal.protobuf.version>
</properties>
<dependencies>
<!--BE CAREFUL! Any dependency added here needs to be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public int run(String[] args) throws Exception {
return -1;
}
String tableName = commandLine.getOptionValue("table");
String cf = commandLine.getOptionValue("cf", null);
String cf = commandLine.getOptionValue("cf", (String) null);
Set<String> families = Sets.newHashSet();
if (cf != null) {
Iterables.addAll(families, Splitter.on(",").split(cf));
Expand Down
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@
databind] must be kept in sync with the version of jackson-jaxrs-json-provider shipped in
hbase-thirdparty.
-->
<hbase-thirdparty.version>4.1.7</hbase-thirdparty.version>
<hbase-thirdparty.version>4.1.8</hbase-thirdparty.version>
<!-- Coverage properties -->
<jacoco.version>0.8.8</jacoco.version>
<jacocoArgLine/>
Expand Down Expand Up @@ -1844,6 +1844,13 @@
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>staging</id>
<name>staging</name>
<url>https://repository.apache.org/content/repositories/orgapachehbase-1555</url>
</repository>
</repositories>
<build>
<!-- Plugin versions are inherited from ASF parent pom: https://maven.apache.org/pom/asf/
For specific version use a property and define it in the parent pom.
Expand Down

0 comments on commit ea8b217

Please sign in to comment.