Skip to content

Commit 0ceccde

Browse files
authored
PHOENIX-7130 Support skipping of shade sources jar creation (#1745)
1 parent bc1e2e7 commit 0ceccde

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

phoenix-client-parent/phoenix-client-embedded/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<configuration>
4646
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
4747
<shadeTestJar>false</shadeTestJar>
48-
<createSourcesJar>true</createSourcesJar>
48+
<createSourcesJar>${shadeSources}</createSourcesJar>
4949
<dependencyReducedPomLocation>${basedir}/target/pom.xml</dependencyReducedPomLocation>
5050
<artifactSet>
5151
<includes>

phoenix-client-parent/phoenix-client-lite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<configuration>
4646
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
4747
<shadeTestJar>false</shadeTestJar>
48-
<createSourcesJar>true</createSourcesJar>
48+
<createSourcesJar>${shadeSources}</createSourcesJar>
4949
<dependencyReducedPomLocation>${basedir}/target/pom.xml</dependencyReducedPomLocation>
5050
<artifactSet>
5151
<includes>

phoenix-mapreduce-byo-shaded-hbase/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
341341
<configuration>
342342
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
343343
<shadeTestJar>false</shadeTestJar>
344-
<createSourcesJar>true</createSourcesJar>
344+
<createSourcesJar>${shadeSources}</createSourcesJar>
345345
<dependencyReducedPomLocation>${basedir}/target/pom.xml</dependencyReducedPomLocation>
346346
<artifactSet>
347347
<includes>

phoenix-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@
308308
<configuration>
309309
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
310310
<shadeTestJar>false</shadeTestJar>
311-
<createSourcesJar>true</createSourcesJar>
311+
<createSourcesJar>${shadeSources}</createSourcesJar>
312312
<dependencyReducedPomLocation>${basedir}/target/pom.xml</dependencyReducedPomLocation>
313313
<artifactSet>
314314
<includes>

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
<test.output.tofile>true</test.output.tofile>
9797
<top.dir>${project.basedir}/..</top.dir>
9898
<test.tmp.dir>${project.build.directory}</test.tmp.dir>
99+
<shadeSources>true</shadeSources>
99100

100101
<!-- Dependency versions -->
101102
<jackson-bom.version>2.14.1</jackson-bom.version>

0 commit comments

Comments
 (0)