You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "Lars Hofhansl (Jira)" <ji...@apache.org> on 2021/12/21 17:56:00 UTC

[jira] [Updated] (TEPHRA-320) Compiling Tephra with Hadoop 3.3.1

     [ https://issues.apache.org/jira/browse/TEPHRA-320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lars Hofhansl updated TEPHRA-320:
---------------------------------
    Description: 
Turns out this was missing Hadoop's thirdparty library.
{code}
diff --git a/tephra-distribution/pom.xml b/tephra-distribution/pom.xml
index 6a9494e2..1f192c3d 100644
--- a/tephra-distribution/pom.xml
+++ b/tephra-distribution/pom.xml
@@ -97,6 +97,11 @@
<artifactId>tephra-hbase-compat-2.3</artifactId>
<version>${project.version}</version>
</dependency>
+    <dependency>
+      <groupId>org.apache.hadoop.thirdparty</groupId>
+      <artifactId>hadoop-shaded-guava</artifactId>
+      <version>1.1.1</version>
+    </dependency>
</dependencies>

<build>
{code}

  was:
Turns out this was missing Hadoop's thirdparty library.

diff --git a/tephra-distribution/pom.xml b/tephra-distribution/pom.xml
index 6a9494e2..1f192c3d 100644
--- a/tephra-distribution/pom.xml
+++ b/tephra-distribution/pom.xml
@@ -97,6 +97,11 @@
<artifactId>tephra-hbase-compat-2.3</artifactId>
<version>${project.version}</version>
</dependency>
+    <dependency>
+      <groupId>org.apache.hadoop.thirdparty</groupId>
+      <artifactId>hadoop-shaded-guava</artifactId>
+      <version>1.1.1</version>
+    </dependency>
</dependencies>

<build>


> Compiling Tephra with Hadoop 3.3.1
> ----------------------------------
>
>                 Key: TEPHRA-320
>                 URL: https://issues.apache.org/jira/browse/TEPHRA-320
>             Project: Phoenix Tephra
>          Issue Type: Bug
>            Reporter: Lars Hofhansl
>            Assignee: Poorna Chandra
>            Priority: Major
>
> Turns out this was missing Hadoop's thirdparty library.
> {code}
> diff --git a/tephra-distribution/pom.xml b/tephra-distribution/pom.xml
> index 6a9494e2..1f192c3d 100644
> --- a/tephra-distribution/pom.xml
> +++ b/tephra-distribution/pom.xml
> @@ -97,6 +97,11 @@
> <artifactId>tephra-hbase-compat-2.3</artifactId>
> <version>${project.version}</version>
> </dependency>
> +    <dependency>
> +      <groupId>org.apache.hadoop.thirdparty</groupId>
> +      <artifactId>hadoop-shaded-guava</artifactId>
> +      <version>1.1.1</version>
> +    </dependency>
> </dependencies>
> <build>
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)