Skip to content

Commit b2039d6

Browse files
committed
build: map shade.skip across all modules using maven-shade-plugin
Add <skip>${shade.skip}</skip> to maven-shade-plugin configurations in: - java-bigquery/benchmark - java-bigtable (and test-proxy) - java-storage-nio/google-cloud-nio - java-storage/storage-shared-benchmarking
1 parent 2b8f7a0 commit b2039d6

5 files changed

Lines changed: 7 additions & 0 deletions

File tree

java-bigquery/benchmark/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
<goal>shade</goal>
6262
</goals>
6363
<configuration>
64+
<skip>${shade.skip}</skip>
6465
<finalName>${uberjar.name}</finalName>
6566
<transformers>
6667
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">

java-bigtable/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,9 @@
286286
<groupId>org.apache.maven.plugins</groupId>
287287
<artifactId>maven-shade-plugin</artifactId>
288288
<version>3.6.0</version>
289+
<configuration>
290+
<skip>${shade.skip}</skip>
291+
</configuration>
289292
</plugin>
290293
<plugin>
291294
<groupId>org.apache.maven.plugins</groupId>

java-bigtable/test-proxy/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@
158158
<goal>shade</goal>
159159
</goals>
160160
<configuration>
161+
<skip>${shade.skip}</skip>
161162
<filters>
162163
<filter>
163164
<artifact>*:*</artifact>

java-storage-nio/google-cloud-nio/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
</dependency>
130130
</dependencies>
131131
<configuration>
132+
<skip>${shade.skip}</skip>
132133
<shadedArtifactAttached>true</shadedArtifactAttached>
133134
<relocations>
134135
<relocation>

java-storage/storage-shared-benchmarking/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
<goal>shade</goal>
6666
</goals>
6767
<configuration>
68+
<skip>${shade.skip}</skip>
6869
<finalName>${uberjar.name}</finalName>
6970
<transformers>
7071
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">

0 commit comments

Comments
 (0)