You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ya...@apache.org on 2021/02/15 20:52:44 UTC

[phoenix] branch 4.16 updated (553c753 -> 91739be)

This is an automated email from the ASF dual-hosted git repository.

yanxinyi pushed a change to branch 4.16
in repository https://gitbox.apache.org/repos/asf/phoenix.git.


    from 553c753  PHOENIX-6377 phoenix-client has erronous maven dependecies
     new fe01b66  PHOENIX-6382 Shaded artifact names and descriptions have undersolved ${hbase.profile} strings
     new 91739be  PHOENIX-6380 phoenix-client-embedded depends on logging classes

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 phoenix-client-parent/phoenix-client-embedded/pom.xml | 11 ++++++++---
 phoenix-client-parent/phoenix-client/pom.xml          |  4 ++--
 phoenix-server/pom.xml                                |  4 ++--
 3 files changed, 12 insertions(+), 7 deletions(-)


[phoenix] 01/02: PHOENIX-6382 Shaded artifact names and descriptions have undersolved ${hbase.profile} strings

Posted by ya...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yanxinyi pushed a commit to branch 4.16
in repository https://gitbox.apache.org/repos/asf/phoenix.git

commit fe01b66e8ddbb12ac2cccbd185d942e610f26771
Author: Istvan Toth <st...@apache.org>
AuthorDate: Fri Feb 12 17:27:21 2021 +0100

    PHOENIX-6382 Shaded artifact names and descriptions have undersolved ${hbase.profile} strings
---
 phoenix-client-parent/phoenix-client-embedded/pom.xml | 4 ++--
 phoenix-client-parent/phoenix-client/pom.xml          | 4 ++--
 phoenix-server/pom.xml                                | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/phoenix-client-parent/phoenix-client-embedded/pom.xml b/phoenix-client-parent/phoenix-client-embedded/pom.xml
index ce83f1e..33cf724 100644
--- a/phoenix-client-parent/phoenix-client-embedded/pom.xml
+++ b/phoenix-client-parent/phoenix-client-embedded/pom.xml
@@ -26,8 +26,8 @@
   </parent>
 
   <artifactId>phoenix-client-embedded-${hbase.suffix}</artifactId>
-  <name>Phoenix Client Embedded for HBase ${hbase.profile}</name>
-  <description>Phoenix Client without logging implementation for for HBase ${hbase.profile}</description>
+  <name>Phoenix Client Embedded</name>
+  <description>Phoenix Client without logging implementation</description>
 
   <packaging>jar</packaging>
 
diff --git a/phoenix-client-parent/phoenix-client/pom.xml b/phoenix-client-parent/phoenix-client/pom.xml
index b55fde4..69a5549 100644
--- a/phoenix-client-parent/phoenix-client/pom.xml
+++ b/phoenix-client-parent/phoenix-client/pom.xml
@@ -26,8 +26,8 @@
   </parent>
 
   <artifactId>phoenix-client-${hbase.suffix}</artifactId>
-  <name>Phoenix Client for HBase ${hbase.profile}</name>
-  <description>Phoenix Client for HBase ${hbase.profile}</description>
+  <name>Phoenix Client</name>
+  <description>Phoenix Client</description>
 
   <packaging>jar</packaging>
 
diff --git a/phoenix-server/pom.xml b/phoenix-server/pom.xml
index c60528d..ad81225 100644
--- a/phoenix-server/pom.xml
+++ b/phoenix-server/pom.xml
@@ -28,8 +28,8 @@
   </parent>
 
   <artifactId>phoenix-server-${hbase.suffix}</artifactId>
-  <name>Phoenix Server JAR for HBase ${hbase.profile}</name>
-  <description>Phoenix HBase Server Side JAR for HBase ${hbase.profile}</description>
+  <name>Phoenix Server JAR</name>
+  <description>Phoenix HBase Server Side JAR</description>
 
   <packaging>jar</packaging>
   <properties>


[phoenix] 02/02: PHOENIX-6380 phoenix-client-embedded depends on logging classes

Posted by ya...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yanxinyi pushed a commit to branch 4.16
in repository https://gitbox.apache.org/repos/asf/phoenix.git

commit 91739be248d5dc199aada88c6571008f92d2c346
Author: Istvan Toth <st...@apache.org>
AuthorDate: Fri Feb 12 08:54:37 2021 +0100

    PHOENIX-6380 phoenix-client-embedded depends on logging classes
---
 phoenix-client-parent/phoenix-client-embedded/pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/phoenix-client-parent/phoenix-client-embedded/pom.xml b/phoenix-client-parent/phoenix-client-embedded/pom.xml
index 33cf724..f01bcb5 100644
--- a/phoenix-client-parent/phoenix-client-embedded/pom.xml
+++ b/phoenix-client-parent/phoenix-client-embedded/pom.xml
@@ -55,7 +55,6 @@
                 <excludes>
                   <exclude>org.apache.phoenix:phoenix-client</exclude>
                   <exclude>xom:xom</exclude>
-                  <exclude>org.slf4j:slf4j-log4j12</exclude>
                 </excludes>
               </artifactSet>
             </configuration>
@@ -71,6 +70,12 @@
     <dependency>
       <groupId>org.apache.phoenix</groupId>
       <artifactId>phoenix-core</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.phoenix</groupId>