Skip to content
4 changes: 4 additions & 0 deletions google-cloud-pom-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
<properties>
<skipUnitTests>false</skipUnitTests>
<checkstyle.header.file>java.header</checkstyle.header.file>
<!-- maven-shade-plugin does not define a built-in user property for its skip parameter;
shade.skip is declared here and mapped in shaded modules to allow quick-build to toggle it off. -->
<shade.skip>false</shade.skip>
</properties>

<developers>
Expand Down Expand Up @@ -72,6 +75,7 @@
<fmt.skip>true</fmt.skip>
<flatten.skip>true</flatten.skip>
<mdep.analyze.skip>true</mdep.analyze.skip>
<shade.skip>true</shade.skip>
Comment thread
lqiu96 marked this conversation as resolved.
</properties>
</profile>
<profile>
Expand Down
1 change: 1 addition & 0 deletions java-bigquery/benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<goal>shade</goal>
</goals>
<configuration>
<skip>${shade.skip}</skip>
<finalName>${uberjar.name}</finalName>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
Expand Down
3 changes: 3 additions & 0 deletions java-bigtable/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<skip>${shade.skip}</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
1 change: 1 addition & 0 deletions java-bigtable/test-proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
<goal>shade</goal>
</goals>
<configuration>
<skip>${shade.skip}</skip>
<filters>
<filter>
<artifact>*:*</artifact>
Expand Down
4 changes: 4 additions & 0 deletions java-cloud-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@

<properties>
<enforcer.skip>true</enforcer.skip>
<!-- maven-shade-plugin does not define a built-in user property for its skip parameter;
shade.skip is declared here and mapped in shaded modules to allow quick-build to toggle it off. -->
<shade.skip>false</shade.skip>
</properties>

<modules>
Expand Down Expand Up @@ -116,6 +119,7 @@
<fmt.skip>true</fmt.skip>
<flatten.skip>true</flatten.skip>
<mdep.analyze.skip>true</mdep.analyze.skip>
<shade.skip>true</shade.skip>
Comment thread
lqiu96 marked this conversation as resolved.
</properties>
</profile>
<profile>
Expand Down
1 change: 1 addition & 0 deletions java-spanner-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@
<goal>shade</goal>
</goals>
<configuration>
<skip>${shade.skip}</skip>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<shadedArtifactAttached>true</shadedArtifactAttached>
Expand Down
1 change: 1 addition & 0 deletions java-storage-nio/google-cloud-nio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
</dependency>
</dependencies>
<configuration>
<skip>${shade.skip}</skip>
<shadedArtifactAttached>true</shadedArtifactAttached>
<relocations>
<relocation>
Expand Down
1 change: 1 addition & 0 deletions java-storage/storage-shared-benchmarking/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
<goal>shade</goal>
</goals>
<configuration>
<skip>${shade.skip}</skip>
<finalName>${uberjar.name}</finalName>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
Expand Down
Loading