You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2023/02/01 07:17:16 UTC

[maven] branch master updated: Add bin packages to SHA512 checksumming as well (#978)

This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new f9ea10688 Add bin packages to SHA512 checksumming as well (#978)
f9ea10688 is described below

commit f9ea10688c7bff04665b2d41f548c63d10a53c63
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Wed Feb 1 08:17:09 2023 +0100

    Add bin packages to SHA512 checksumming as well (#978)
    
    Not only src but bin needs SHA512 as well. Plugin now does:
    ```
    [INFO] --- checksum:1.11:artifacts (source-release-checksum) @ apache-maven ---
    [INFO] apache-maven-4.0.0-alpha-5-SNAPSHOT-bin.tar.gz - SHA-512 : 2ee4c27ff611852caffab6543582918c06d900da184cdd389e64bae05fb8a2ac959edf27a946c60c9129c87baa6ec593a64d25edf3739339dd3f8d3d7942c7db
    [INFO] apache-maven-4.0.0-alpha-5-SNAPSHOT-bin.zip - SHA-512 : 078667f3aad060163cad692eab7ced00fa377ba3a89f43431b23bd5248fc1603d3668cd68a7f096abcbc460ef4fbb47981b6bf5acc236a522e40fd700bb415c6
    [INFO] apache-maven-4.0.0-alpha-5-SNAPSHOT-src.tar.gz - SHA-512 : ad2ca325ef138389fa967bde5e176a2447b5dd9e7edfa5cd1bf3f586fd39b93a1d415b55bb41b29e996104a4e14d4ef5fcc0e2c2eff65609121595f2695c96d4
    [INFO] apache-maven-4.0.0-alpha-5-SNAPSHOT-src.zip - SHA-512 : 060de415118365954918079c73bf0ecc5d1ea8989b1864b32e3ebccd94306263878805c6d997d6c4a69700ebedd6fe42485a3692570c6466deb5e1be136e3e3e
    ```
---
 apache-maven/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index 59f03e67b..86f5506f7 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -290,7 +290,7 @@ under the License.
                   <goal>artifacts</goal>
                 </goals>
                 <configuration>
-                  <includeClassifiers>src</includeClassifiers>
+                  <includeClassifiers>bin,src</includeClassifiers>
                 </configuration>
               </execution>
             </executions>