Skip to content

Commit

Permalink
Prevent publishing of useless test module pom (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder authored Jun 14, 2024
1 parent ff494b5 commit 24f8bdd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions jr-groovy-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,23 @@
</includes>
</configuration>
</plugin>

<!-- 13-Jun-2024, tatu: Should NOT publish jar
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 24f8bdd

Please sign in to comment.