[ 
https://issues.apache.org/jira/browse/HBASE-17442?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16139257#comment-16139257
 ] 

Ted Yu commented on HBASE-17442:
--------------------------------

I got the following when building:
{code}
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[WARNING] 'parent.relativePath' of POM 
org.apache.hbase:hbase-replication:[unknown-version] 
(/Users/tyu/trunk/hbase-replication/pom.xml) points at org.apache.hbase:hbase 
instead of org.apache.hbase:hbase-build-configuration, please verify your 
project structure @ line 24, column 11
[FATAL] Non-resolvable parent POM for 
org.apache.hbase:hbase-replication:[unknown-version]: Could not find artifact 
org.apache.hbase:hbase-build-configuration:pom:3.0.0-SNAPSHOT and 
'parent.relativePath' points at wrong local POM @ line 24, column 11
 @
{code}
This seems to fix the above:
{code}
diff --git a/hbase-replication/pom.xml b/hbase-replication/pom.xml
index 858e9fc..8b3d33c 100644
--- a/hbase-replication/pom.xml
+++ b/hbase-replication/pom.xml
@@ -25,7 +25,7 @@
     <artifactId>hbase-build-configuration</artifactId>
     <groupId>org.apache.hbase</groupId>
     <version>3.0.0-SNAPSHOT</version>
-    <relativePath>..</relativePath>
+               <relativePath>../hbase-build-configuration</relativePath>
   </parent>
   <artifactId>hbase-replication</artifactId>
   <name>Apache HBase - Replication</name>
{code}

> Move most of the replication related classes to hbase-server package
> --------------------------------------------------------------------
>
>                 Key: HBASE-17442
>                 URL: https://issues.apache.org/jira/browse/HBASE-17442
>             Project: HBase
>          Issue Type: Sub-task
>          Components: build, Replication
>    Affects Versions: 2.0.0
>            Reporter: Guanghao Zhang
>            Assignee: Guanghao Zhang
>            Priority: Critical
>             Fix For: 2.0.0-alpha-3
>
>         Attachments: 0001-hbase-replication-module.patch, 
> HBASE-17442.branch-2.001.patch, HBASE-17442.branch-2.001.patch, 
> HBASE-17442.branch-2.002.patch, HBASE-17442.master.001.patch, 
> HBASE-17442.master.002.patch, HBASE-17442.master.003.patch, 
> HBASE-17442.master.004.patch, HBASE-17442.v1.patch, HBASE-17442.v2.patch, 
> HBASE-17442.v2.patch, HBASE-17442.v3.patch
>
>
> After the replication requests are routed through master, replication 
> implementation details didn't need be exposed to client. We should move most 
> of the replication related classes to hbase-server package.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to