Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .blazar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildpack:
env:
MAVEN_PHASE: "package assembly:single deploy"
HADOOP_DEP_VERSION: "3.3.6-hubspot-SNAPSHOT"
MAVEN_ARGS: "-Phadoop-3.0 -Dhadoop.profile=3.0 -Dhadoop-three.version=$HADOOP_DEP_VERSION -Dgpg.skip=true -DskipTests -DdeployAtEnd -pl hbase-assembly -am"
MAVEN_BUILD_ARGS: "-Phadoop-3.0 -Dhadoop.profile=3.0 -Dhadoop-three.version=$HADOOP_DEP_VERSION -Dgpg.skip=true -DskipTests -DdeployAtEnd -pl hbase-assembly -am"

# Below variables are generated in prepare_environment.sh.
# The build environment requires environment variables to be explicitly defined before they may
Expand Down
4 changes: 2 additions & 2 deletions build-scripts/prepare_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ write-build-env-var YUM_REPO_UPLOAD_OVERRIDE_CENTOS_8 "$YUM_REPO_UPLOAD_OVERRIDE
# with 2.6-hubspot-SNAPSHOT which is not very useful as a point of reference.
# Another option would be to pass in our FULL_BUILD_VERSION but that might cause some funniness
# with the expectations in VersionInfo.compareVersion().
write-build-env-var MAVEN_ARGS "$MAVEN_ARGS -Dversioninfo.version=$HBASE_VERSION"
write-build-env-var MAVEN_BUILD_ARGS "$MAVEN_BUILD_ARGS -Dversioninfo.version=$HBASE_VERSION"

echo "Building HBase version $HBASE_VERSION"
echo "Will deploy to nexus with version $SET_VERSION"
echo "Will create rpm with version $FULL_BUILD_VERSION"
echo "Will run maven with extra args $MAVEN_ARGS"
echo "Will run maven with extra args $MAVEN_BUILD_ARGS"
2 changes: 1 addition & 1 deletion hbase-rpm/.blazar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
HBASE_VERSION: ""
PKG_RELEASE: ""
FULL_BUILD_VERSION: ""
MAVEN_ARGS: ""
MAVEN_BUILD_ARGS: ""

depends:
- hbase
Expand Down
2 changes: 1 addition & 1 deletion hubspot-client-bundles/.blazar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
HBASE_VERSION: ""
PKG_RELEASE: ""
FULL_BUILD_VERSION: ""
MAVEN_ARGS: ""
MAVEN_BUILD_ARGS: ""

before:
- description: "Prepare build environment"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
HBASE_VERSION: ""
PKG_RELEASE: ""
FULL_BUILD_VERSION: ""
MAVEN_ARGS: ""
MAVEN_BUILD_ARGS: ""

before:
- description: "Prepare build environment"
Expand Down
2 changes: 1 addition & 1 deletion hubspot-client-bundles/hbase-client-bundle/.blazar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
HBASE_VERSION: ""
PKG_RELEASE: ""
FULL_BUILD_VERSION: ""
MAVEN_ARGS: ""
MAVEN_BUILD_ARGS: ""

before:
- description: "Prepare build environment"
Expand Down
2 changes: 1 addition & 1 deletion hubspot-client-bundles/hbase-mapreduce-bundle/.blazar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
HBASE_VERSION: ""
PKG_RELEASE: ""
FULL_BUILD_VERSION: ""
MAVEN_ARGS: ""
MAVEN_BUILD_ARGS: ""

before:
- description: "Prepare build environment"
Expand Down
7 changes: 7 additions & 0 deletions hubspot-client-bundles/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
unexpected netty dependencies. This is problematic with the shade plugin because it flattens
the dependency tree, so those dependencies become direct dependencies of the bundle. -->
<zookeeper.version>3.6.3-shaded-SNAPSHOT</zookeeper.version>

<revision>2.5-hubspot-SNAPSHOT</revision>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -58,6 +60,11 @@
<artifactId>hbase-shaded-netty-tcnative</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-compression-zstd</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
Expand Down