Rather than generating individual files in the form <«file.algorithm»>, the plugin can gather hashcodes in CSV or XML files:
<project> ... <build> <plugins> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.10</version> <executions> <execution> <goals> <goal>artifacts</goal> </goals> </execution> </executions> <configuration> <csvSummary>true</csvSummary> <csvSummaryFile>artifacts-checksums.csv</csvSummaryFile> <xmlSummary>true</xmlSummary> <xmlSummaryFile>artifacts-checksums.xml</xmlSummaryFile> </configuration> </plugin> ... </plugins> </build> ... </project>