Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
chore: Skip generating test jar for BOM (#1899)
Browse files Browse the repository at this point in the history
* chore: Don't generate testlib for parent and bom

* chore: Add in properties per project

* chore: Move testlib configs to modules

* chore: Don't skip child modules

* chore: Remove jar plugin in bom

* chore: Skip test jar classifier for BOM
  • Loading branch information
lqiu96 committed Nov 28, 2022
1 parent de0ca3b commit 735468e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions gax-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,20 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 735468e

Please sign in to comment.