You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2017/08/26 19:21:00 UTC

svn commit: r1806321 - in /webservices/axiom/trunk: distribution/pom.xml etc/dist.py

Author: veithen
Date: Sat Aug 26 19:21:00 2017
New Revision: 1806321

URL: http://svn.apache.org/viewvc?rev=1806321&view=rev
Log:
Upgrade checksum-maven-plugin and provide SHA-512 checksums.

Modified:
    webservices/axiom/trunk/distribution/pom.xml
    webservices/axiom/trunk/etc/dist.py

Modified: webservices/axiom/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/distribution/pom.xml?rev=1806321&r1=1806320&r2=1806321&view=diff
==============================================================================
--- webservices/axiom/trunk/distribution/pom.xml (original)
+++ webservices/axiom/trunk/distribution/pom.xml Sat Aug 26 19:21:00 2017
@@ -173,14 +173,21 @@
                 </executions>
             </plugin>
             <plugin>
-                <groupId>net.ju-n.maven.plugins</groupId>
+                <groupId>net.nicoulaj.maven.plugins</groupId>
                 <artifactId>checksum-maven-plugin</artifactId>
-                <version>1.2</version>
+                <version>1.5</version>
                 <executions>
                     <execution>
                         <goals>
                             <goal>artifacts</goal>
                         </goals>
+                        <configuration>
+                            <algorithms>
+                                <algorithm>MD5</algorithm>
+                                <algorithm>SHA-1</algorithm>
+                                <algorithm>SHA-512</algorithm>
+                            </algorithms>
+                        </configuration>
                     </execution>
                 </executions>
             </plugin>

Modified: webservices/axiom/trunk/etc/dist.py
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/etc/dist.py?rev=1806321&r1=1806320&r2=1806321&view=diff
==============================================================================
--- webservices/axiom/trunk/etc/dist.py (original)
+++ webservices/axiom/trunk/etc/dist.py Sat Aug 26 19:21:00 2017
@@ -35,7 +35,7 @@ if exists(dist_root):
 call(["svn", "checkout", "https://dist.apache.org/repos/dist/dev/ws/axiom/", dist_root])
 mkdir(dist_dir)
 for classifier in [ "bin", "src" ]:
-    for suffix in [ "zip", "zip.asc", "zip.md5", "zip.sha1"]:
+    for suffix in [ "zip", "zip.asc", "zip.md5", "zip.sha1", "zip.sha512"]:
         file = "axiom-" + release + "-" + classifier + "." + suffix
         copyfile(join(axiom_dir, "distribution", "target", file), join(dist_dir, file))
 call(["svn", "add", dist_dir])