You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2018/08/06 20:52:56 UTC

[maven-apache-parent] 01/01: [MPOM-205] create checksum files in target/ during release

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

hboutemy pushed a commit to branch MPOM-205
in repository https://gitbox.apache.org/repos/asf/maven-apache-parent.git

commit 0aa8f8695c8db8be78ef7f6452b81bbbe1834531
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Mon Aug 6 22:50:46 2018 +0200

    [MPOM-205] create checksum files in target/ during release
---
 pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/pom.xml b/pom.xml
index 5878b36..db39521 100644
--- a/pom.xml
+++ b/pom.xml
@@ -422,6 +422,24 @@ under the License.
               </execution>
             </executions>
           </plugin>
+          <plugin>
+            <groupId>net.nicoulaj.maven.plugins</groupId>
+            <artifactId>checksum-maven-plugin</artifactId>
+            <version>1.6</version>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>artifacts</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <algorithms>
+                <algorithm>SHA-1</algorithm>
+                <algorithm>SHA-256</algorithm>
+              </algorithms>
+            </configuration>
+          </plugin>
         </plugins>
       </build>
     </profile>