You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2024/03/07 06:10:53 UTC

(phoenix) branch 5.1 updated: PHOENIX-7130 Support skipping of shade sources jar creation

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

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


The following commit(s) were added to refs/heads/5.1 by this push:
     new c8930e32dd PHOENIX-7130 Support skipping of shade sources jar creation
c8930e32dd is described below

commit c8930e32dd771ec706d4f4b9b713416b7106f545
Author: Jain, Nihal <ni...@visa.com>
AuthorDate: Wed Feb 28 22:02:09 2024 +0530

    PHOENIX-7130 Support skipping of shade sources jar creation
---
 phoenix-client-parent/phoenix-client-embedded/pom.xml | 2 +-
 phoenix-client-parent/phoenix-client/pom.xml          | 2 +-
 pom.xml                                               | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/phoenix-client-parent/phoenix-client-embedded/pom.xml b/phoenix-client-parent/phoenix-client-embedded/pom.xml
index bf98474708..f59b0830fa 100644
--- a/phoenix-client-parent/phoenix-client-embedded/pom.xml
+++ b/phoenix-client-parent/phoenix-client-embedded/pom.xml
@@ -45,7 +45,7 @@
             <configuration>
               <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
               <shadeTestJar>false</shadeTestJar>
-              <createSourcesJar>true</createSourcesJar>
+              <createSourcesJar>${shadeSources}</createSourcesJar>
               <dependencyReducedPomLocation>${basedir}/target/pom.xml</dependencyReducedPomLocation>
               <artifactSet>
                 <includes>
diff --git a/phoenix-client-parent/phoenix-client/pom.xml b/phoenix-client-parent/phoenix-client/pom.xml
index 17db621762..e03a23415a 100644
--- a/phoenix-client-parent/phoenix-client/pom.xml
+++ b/phoenix-client-parent/phoenix-client/pom.xml
@@ -45,7 +45,7 @@
             <configuration>
               <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
               <shadeTestJar>false</shadeTestJar>
-              <createSourcesJar>true</createSourcesJar>
+              <createSourcesJar>${shadeSources}</createSourcesJar>
               <dependencyReducedPomLocation>${basedir}/target/pom.xml</dependencyReducedPomLocation>
               <artifactSet>
                 <includes>
diff --git a/pom.xml b/pom.xml
index dec3ade754..97c98575be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,6 +103,7 @@
     <test.output.tofile>true</test.output.tofile>
     <top.dir>${project.basedir}/..</top.dir>
     <test.tmp.dir>${project.build.directory}</test.tmp.dir>
+    <shadeSources>true</shadeSources>
 
     <!-- Dependency versions -->
     <jackson-bom.version>2.14.1</jackson-bom.version>