Skip to content

Commit

Permalink
Disable deployAtEnd for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
elahrvivaz committed Jul 12, 2024
1 parent 0111826 commit afe0182
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- don't deployAtEnd to prevent the staging repo from closing prematurely when building multiple
scala versions. we can discard the staging repo if there is an error in the build. -->
<deployAtEnd>false</deployAtEnd>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
Expand Down

0 comments on commit afe0182

Please sign in to comment.