You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by vi...@apache.org on 2018/12/04 19:52:11 UTC

phoenix git commit: PHOENIX-4781 Create artifact jar so that shaded jar replaces it properly

Repository: phoenix
Updated Branches:
  refs/heads/master 52b563d70 -> 1ab08c726


PHOENIX-4781 Create artifact jar so that shaded jar replaces it properly


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/1ab08c72
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/1ab08c72
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/1ab08c72

Branch: refs/heads/master
Commit: 1ab08c72620962268d58d132a6b5bb3629b2656f
Parents: 52b563d
Author: Vincent Poon <vi...@apache.org>
Authored: Fri Nov 30 17:55:34 2018 -0800
Committer: Vincent Poon <vi...@apache.org>
Committed: Tue Dec 4 11:51:38 2018 -0800

----------------------------------------------------------------------
 phoenix-client/pom.xml | 9 +++------
 phoenix-server/pom.xml | 9 +++------
 2 files changed, 6 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/1ab08c72/phoenix-client/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-client/pom.xml b/phoenix-client/pom.xml
index 2d50d2c..edb5b1a 100644
--- a/phoenix-client/pom.xml
+++ b/phoenix-client/pom.xml
@@ -57,12 +57,9 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>default-jar</id>
-            <phase>none</phase>
-          </execution>
-        </executions>
+        <configuration>
+          <finalName>phoenix-${project.version}-client</finalName>
+        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/1ab08c72/phoenix-server/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-server/pom.xml b/phoenix-server/pom.xml
index 48d6aa7..bc2156e 100644
--- a/phoenix-server/pom.xml
+++ b/phoenix-server/pom.xml
@@ -62,12 +62,9 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>default-jar</id>
-            <phase>none</phase>
-          </execution>
-        </executions>
+        <configuration>
+          <finalName>phoenix-${project.version}-server</finalName>
+        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>