johanhaleby / occurrent

Unintrusive Event Sourcing Library for the JVM
https://occurrent.org
120 stars 16 forks source link

retryFailedDeploymentCount in Maven deploy #149

Closed johanhaleby closed 7 months ago

johanhaleby commented 7 months ago

Maven central s01.oss.sonatype.org is often flaky. Retry when deploying as a part of release.

<project>
  [...]
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <configuration>
          <retryFailedDeploymentCount>3</retryFailedDeploymentCount>
        <configuration>
      </plugin>
    </plugins>
  </build>