diff options
author | Andy Clement <aclement@pivotal.io> | 2021-06-07 21:13:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 21:13:39 -0700 |
commit | 437b348674bb90e9b226a559d3b2736845e20d20 (patch) | |
tree | 9124112b3689f813cf2d9aa2d7e6b198472168a8 | |
parent | d2c3c52c5284af9d0d07bdc061a7d0a05def0883 (diff) | |
parent | 1f76a06276b1dd44d70b78854bc9fea1268a0bb0 (diff) | |
download | aspectj-437b348674bb90e9b226a559d3b2736845e20d20.tar.gz aspectj-437b348674bb90e9b226a559d3b2736845e20d20.zip |
Merge pull request #67 from kriegaex/libs-improve-download
Detect previously failed downloads by verifying existing file checksums
-rw-r--r-- | docs/developer/RELEASE.md | 2 | ||||
-rw-r--r-- | lib/pom.xml | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/developer/RELEASE.md b/docs/developer/RELEASE.md index 785a0ebdd..610a47f4b 100644 --- a/docs/developer/RELEASE.md +++ b/docs/developer/RELEASE.md @@ -138,7 +138,7 @@ mvn nexus-staging:rc-list # Use the ID of the corresponding CLOSED staging repository for releasing to # Maven Central - mvn nexus-staging:rc-release -DstagingRepositoryId=orgaspectj-1106 +mvn nexus-staging:rc-release -DstagingRepositoryId=orgaspectj-1106 ``` Tadaa! We have performed an AspectJ release. In a few minutes, the artifacts should appear on Maven Central somewhere diff --git a/lib/pom.xml b/lib/pom.xml index abb416de6..e7f82b409 100644 --- a/lib/pom.xml +++ b/lib/pom.xml @@ -58,6 +58,10 @@ <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>1.6.3</version> + <configuration> + <!-- Detect previously failed downloads by verifying checksums of existing files -> retry --> + <checkSignature>true</checkSignature> + </configuration> <executions> <execution> <id>download-ant-binaries</id> |