Author: mbenson Date: Wed Mar 26 20:28:55 2014 New Revision: 1582037 URL: http://svn.apache.org/r1582037 Log: create checksum files during install when deploy profile is activated
Modified: commons/proper/weaver/trunk/dist/pom.xml Modified: commons/proper/weaver/trunk/dist/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/weaver/trunk/dist/pom.xml?rev=1582037&r1=1582036&r2=1582037&view=diff ============================================================================== --- commons/proper/weaver/trunk/dist/pom.xml (original) +++ commons/proper/weaver/trunk/dist/pom.xml Wed Mar 26 20:28:55 2014 @@ -125,8 +125,6 @@ under the License. </dependency> </dependencies> - <!-- TODO create md5 and sha1 hashes directly, since skipped deploy - plugin won't be doing it for us --> <build> <plugins> <plugin> @@ -163,6 +161,12 @@ under the License. </execution> </executions> </plugin> + <plugin> + <artifactId>maven-install-plugin</artifactId> + <configuration> + <createChecksum>true</createChecksum> + </configuration> + </plugin> </plugins> </build> </profile>