Skip to content

Commit

Permalink
Merge pull request #258 from focus-shift/do-not-deploy-tests
Browse files Browse the repository at this point in the history
Skip deployment of tests package to maven central
  • Loading branch information
derTobsch authored Aug 10, 2023
2 parents 99096b9 + f05a130 commit 5a00802
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions jollyday-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,23 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<configuration>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 5a00802

Please sign in to comment.