Fix Travis-CI: Make this build like Commons Text. The plugin

checksum-maven-plugin blows up the Travis-CI build and we have our own
build and release plugins that do the same thing.
This commit is contained in:
Gary Gregory 2018-10-20 10:19:37 -06:00
parent 6133a6031d
commit c7a9b1707f
1 changed files with 0 additions and 38 deletions

38
pom.xml
View File

@ -244,44 +244,6 @@ CSV files of various types.
</configuration>
</plugin>
<!--
calculate checksums of release artifacts for Apache dist area
-->
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>generate.checksums</id>
<phase>verify</phase>
<goals>
<goal>files</goal>
</goals>
</execution>
</executions>
<configuration>
<algorithms>
<algorithm>SHA-512</algorithm>
</algorithms>
<csvSummary>false</csvSummary>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<includes>
<include>${project.artifactId}-${project.version}-src.zip</include>
<include>
${project.artifactId}-${project.version}-src.tar.gz
</include>
<include>${project.artifactId}-${project.version}-bin.zip</include>
<include>
${project.artifactId}-${project.version}-bin.tar.gz
</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>
</plugins>
</build>