OpenSextant / Xponents

Geographic Place, Date/time, and Pattern entity extraction toolkit along with text extraction from unstructured data and GIS outputters.
Apache License 2.0
44 stars 7 forks source link

Nexus Sonatype deploy timeout #71

Closed mubaldino closed 2 years ago

mubaldino commented 2 years ago

Describe the bug nexus staging timesout on 2MB jar file.

To Reproduce

mvn clean deploy -P release Expected behavior No timeout See settings on https://help.sonatype.com/repomanager2/staging-releases/configuring-your-project-for-deployment

mubaldino commented 2 years ago

POM adjustment: use longer stagingProgressTimeoutMinutes. 2.3 MB JAR took all 15 minutes to release.

          <plugin>
            <groupId>org.sonatype.plugins</groupId>
            <artifactId>nexus-staging-maven-plugin</artifactId>
            <configuration>
              <stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
            </configuration>
          </plugin>
        </plugins>